function x_GetX(e){
    var l=e.offsetLeft;while(e=e.offsetParent){
        l+=e.offsetLeft;
    }
    return l;
}
function x_GetY(e){
    var t=e.offsetTop;while(e=e.offsetParent){
        t+=e.offsetTop;
    }
    return t;
}

function onClickSrhHot(obj){
  with(document.getElementById(obj)){
	style.top=(x_GetY(document.getElementById("srhHotBtn"))+19)+"px";
	style.left=(x_GetX(document.getElementById("srhHotBtn"))-201)+"px";
	style.visibility="visible";
  }
}

function colseSrhHot(obj){
  with(document.getElementById(obj)){
	style.visibility="hidden";
  }
}

document.write('<style type=text/css>');
document.write('.srhHot{font-size:12px; line-height:150%; text-align:left}');
document.write('</style>');
document.write('<div id="srhHotList" style="position:absolute; width:250px; height:49px; visibility:hidden; z-index:999"><div style="width:250px; height:49px; border:1px solid #AAAAAA; background-color:#F0F0F0"><div style="height:32px; margin:3px 3px 5px 4px; padding:5px; background-color:#FFFFFF" class="srhHot">');
document.write('<iframe src="http://life.21cn.com/so/srhHotPage.html" scrolling="no" width="230" height="37" frameborder="0"></iframe>');
document.write('</div></div><div align="right"><img src="http://img04.21cn.com/search/btn/btnClose.gif" style="cursor:pointer" onClick="colseSrhHot(\'srhHotList\');"></div></div>');

