<!--
function MoveImg(){
	Form1.img1.style.left = document.body.clientWidth-102;
	ognY = Form1.img1.style.top;
	ogn2 = ognY.indexOf("px");
	ognY = eval(ognY.substring(0,ogn2));
	if(ognY > 450){
		Form1.img1.style.top = 0;
		//f_Pos.value = tmpY;
	}
	else{
		tmpY = ognY + 2;
		Form1.img1.style.top = tmpY;
		//f_Pos.value = tmpY;
	}
	window.setTimeout("MoveImg()",100);
}
-->