<!--
//定义模糊搜索后的菜单显示内容
function isSerchOver(){
var closeha=setTimeout("isclosediv()",7000);
}
function isclosediv(){
document.all.DivIndex.style.display="none";
}
//初始化移动层,并且根据控件位置赖调整位置
document.write("<div id=\"DivIndex\" style=\"display:none; position:absolute;background-color: #FFFFFF;border: 1px solid #F6F6F6;\" onmouseout=\"\">");
document.write("<iframe id=\"incframe\"  frameborder=\"0\" scrolling=\"no\" ><\/iframe>");
document.write("<\/div>");
function CreateObjs(e,width,height,framesrc,src){
var  _x=e.offsetTop;  
var  _y=e.offsetLeft;
var obj=document.all("DivIndex");
obj.style.display="";
     while(e=e.offsetParent)  
     {  
           _x+=e.offsetTop;  
           _y+=e.offsetLeft;  
     }  
     obj.style.left=_y;
     obj.style.top=_x+20;
	 document.all(framesrc).src=src;
	 document.all(framesrc).style.width=width;
	 document.all(framesrc).style.height=height;
	 document.all("DivIndex").style.width=width;
	 document.all("DivIndex").style.height=height;
}
//-->
