//Ë«»÷Êó±ê¹ö¶¯ÆÁÄ»µÄ´úÂë
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

function mOvr(src,clrOver){
if (!src.contains(event.fromElement)){
	  src.style.cursor = 'hand';
	  src.bgColor = clrOver;
	}
}
function mOut(src,clrIn){
	if (!src.contains(event.toElement)){
	  src.style.cursor = 'default';
	  src.bgColor = clrIn;
	}
}
function mClk(src){
if(event.srcElement.tagName=='TD'){
	  src.children.tags('A')[0].click();
}
}
function doZoom(size){
	document.getElementById('zoom').style.fontSize=size+'pt'
}