 m=window.screen.height*0.7
 function myload()
{
if (navigator.appName == "Netscape")
{document.car.pageY=10;
document.car.pageX=window.screen.width-10
mymove();
}
else
{
car.style.top=10;
car.style.left=window.screen.width-10
mymove();
}
}
 
 
 document.ns = navigator.appName == "Netscape"
 var a
 var b
 var x=0
 function mymove()
 {
 window.screen.width>1002 ? a=500:a=500
 b=window.screen.width
 if(document.ns)
 {
 document.car.top=pageYOffset+m-a
 document.car.left=b-120
 setTimeout("mymove();",1)
 }
 else
 {
 car.style.top=document.body.scrollTop+m-a
 car.style.left=b-120
 setTimeout("mymove();",1)
 }
 }
