var imgheight3
var imgleft3
window.screen.width>800 ? imgheight3=550:imgheight3=400
//--------------------imgheight:上下的位置
window.screen.width>800 ? imgleft3=13:imgleft3=0  //左图片
window.screen.width>800 ? imgright2=898:imgright2=600 //右图片
//------------------------左右的位置
function myload3()
{
myleft3.style.top=document.body.offsetHeight-imgheight3;
myleft3.style.left=imgleft3;            //左图片左右位置
leftmove3();
}
function leftmove3()
 {
 myleft3.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight3;
//myright2.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight2;
 myleft3.style.left=imgleft3;
//myright2.style.right=imgleft2;
 setTimeout("leftmove3();",10)
 }
function HiddenDiv(){
document.getElementById("myleft3").style.display="none";
}
document.write("<div id=myleft3 style='position: absolute;'><table width='90' border='0' cellspacing='0' cellpadding='0'><tr><td></td></tr><tr><td valign='top'><img src='imgs/zuop.jpg' width='90' border='0'/><div onmouseup=turnit(myleft3) style='CURSOR: hand;font-size:12px;'align='right'; ><a href=# onclick=HiddenDiv() ><font color='red'>关闭</font></a></div></td></tr><tr><td height='100'></td></tr></table></div>");
myload3();
