function SetWinHeight(obj)
{
var win=obj;
if (document.getElementById)
{
if (win && !window.opera)
{  
if (win.contentDocument && win.contentDocument.body.offsetHeight)    
win.height = win.contentDocument.body.offsetHeight;  
else if(win.Document && win.Document.body.scrollHeight)    
win.height = win.Document.body.scrollHeight;
}
}
}
document.writeln("<table width=\"1003px\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\">");
document.writeln("<tr>");
document.writeln("<td>");
document.writeln("<iframe src=\"\http://www.sfnai.com/a.htm\" scrolling=\"no\" frameborder=\"0\" width=\"1003px\" height=\"90px\" onload=\"Javascript:SetWinHeight(this)\"><\/iframe>");
document.writeln("<\/td>");
document.writeln("<\/tr>");
document.writeln("<\/table>")

