// JavaScript Document
var imgYHheight_close


window.screen.width>800 ? imgYHheight_close=10:imgYHheight_close=10
var IsStopYH;
 function myYHload()
{
	Layer2_MigMoveRight.style.visibility='visible';
	Layer2_MigMoveRight.style.top=document.body.scrollTop+imgYHheight_close;
	Layer2_MigMoveRight.style.left=document.body.offsetWidth-125;
	IsStopYH= setInterval("myYHmove()",50)
}
 function myYHmove()
 {
	 Layer2_MigMoveRight.style.top=document.body.scrollTop+imgYHheight_close;
	 Layer2_MigMoveRight.style.left=document.body.scrollLeft+document.body.offsetWidth-125;

 }
function RightYHImgMoveClose()
{	
	clearInterval(IsStopYH);
	Layer2_MigMoveRight.style.display='none';
}


myYHload();

