// JavaScript Document
function SetNewsHotHeight(obj)
{
var NewsHot=obj;
if (document.getElementById)
{
if (NewsHot && !window.opera)
{
   if (NewsHot.contentDocument && NewsHot.contentDocument.body.offsetHeight) 

    NewsHot.height = NewsHot.contentDocument.body.offsetHeight; 
   else if(NewsHot.Document && NewsHot.Document.body.scrollHeight)
    NewsHot.height = NewsHot.Document.body.scrollHeight;
}
}
}


