//Ë«»÷¹öÆÁ
var currentpos,timer; 

function initialize() 
{ 
	timer = setInterval("scrollwindow()",30); 
} 
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 



//×´Ì¬À¸¹ö¶¯×ÖÄ»

var msg = "Welcome to hqssyy!";
var speed = 300; 
var msgud = " " + msg; 
function statusScroll() 
{ 
	if (msgud.length <msg.length) 
	msgud += "           " + msg; 
	msgud = msgud.substring(1, msgud.length); 
	window.status = msgud.substring(0, msg.length);
	window.setTimeout("statusScroll()", speed); 
} 

