// JavaScript Document

// JavaScript Document
<!--

// Start Scroll to Page top
var count = 0;
var bln = 0;
var timaerID;
function scrollTop(){
	count = 0;
	bln = 0;
	timerID = setInterval('scroll()',30);
}

function scroll(){
	y = 0;
	if (bln == 0){
		y = ((document.compatMode=="CSS1Compat")?document.documentElement:document.body).scrollTop;
		if (count < y){
			window.scrollTo(0,y - count);
			count = y / 8;
			if (count > (y - 6)){
				count = 2;
			}
		}
		else {
		clearInterval(timerID);
		bln = 1;
		location.hash='top';
		}
	}
}
// End Scroll to Page top

//-->

