// JavaScript Document
var imgheight_close

window.screen.width>800 ? imgheight_close=120:imgheight_close=120
 function myload()
{
Layer1_MigMoveRight.style.visibility='visible';
Layer1_MigMoveRight.style.top=document.body.scrollTop+imgheight_close;
Layer1_MigMoveRight.style.left=document.body.offsetWidth-120;
mymove();
}
 function mymove()
 {
 Layer1_MigMoveRight.style.top=document.body.scrollTop+imgheight_close;
 Layer1_MigMoveRight.style.left=document.body.scrollLeft+document.body.offsetWidth-120;
 setTimeout("mymove();",50)

 }
function RightImgMoveClose(){
	Layer1_MigMoveRight.style.visibility='hidden';
}


myload();

