//var timer;

function FlyImg(imgname,width,height){
 this.named=imgname;
 
 this.w=width+20;
 this.h=height;
 this.xx=120;
 //this.yy=200;
 this.yy=100;
 //this.timer=null;
}

function MvImage(imgname, start){
	if (document.getElementById){
		eval("image="+imgname);
		
		//image.yy += 4;
		
		if(start > 0) {
			document.getElementById(image.named).style.left=image.xx+"px";
			document.getElementById(image.named).style.top=image.yy+"px";
			
			//image.timer=setTimeout("MvImage('"+image.named+"')",50);
		} else {
			document.getElementById(image.named).style.left=-1000+"px";
			document.getElementById(image.named).style.top=-1000+"px";
		}
	}
}

