 	function Newsopen(path)
 	{ 		
 		if (path=="pass"){		
		window.open("lookpass.asp","","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=360,height=160,top=100,left=300");
 		}
 		else if (path=="message"){
 		window.open("InPmbox.asp","","toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=0,width=420,height=340,top=100,left=300");
 		}
 	}
	function Sendmessage(mailto)	
	{
		window.open("Sendpm.asp?mailto="+mailto,"","toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=0,width=420,height=340,top=100,left=300");
	} 	
 	var currentpos,timer; 
	function initialize() 
	{ 
	timer=setInterval("scrollwindow()",10);
	} 
	function sc(){
	clearInterval(timer);	
	}
	function scrollwindow() 
	{ 
	currentpos=document.body.scrollTop; 
	window.scroll(0,++currentpos); 
	if (currentpos != document.body.scrollTop) 
	sc();
	} 
	document.onmousedown=sc
	document.ondblclick=initialize