	var maxx=screen.width;
	var maxy=screen.height;
	
	function openWin(url)
	{
		a = window.open(url,"a","width=790,height=460,scrollbar=yes");
		a.focus();t
	}
	
	function line()
	{

		if (document.all)
		{
			str =  Math.round(500 + Math.random() * 50) + "px"; 
			document.all.l1.style.setAttribute("top",str,"false");
			document.all.l1.style.top =  Math.round(50 + Math.random() * 50) + "px";						
		}
		else if (document.layers)
		{
			document.l1.moveTo(0, Math.round(50 + Math.random() * 50));	
		}
		else if (document.getElementById("l1"))
		{
		 	document.getElementById("l1").style.top = Math.round(50 + Math.random() * 50) + "px"; 						
		}
		window.setTimeout("line()", 200);	

	}

