window.onload=function() {
document.getElementById("load").style.display="none";
if(s_on==1){Scroll_(125,0);}	
if(s_on==2){Scroll_fix(125);}	
}


function Scroll_(y,c_y) {
//alert(c_y);
this.c_y=c_y;
this.y=y;
this.c_y=c_y+3;

if(c_y<y) {
	setTimeout("Scroll_move(this.y,this.c_y)",2);	
}
}

function Scroll_move(y,c_y,m) {
window.scroll(0,c_y,m);
Scroll_(y,c_y);
}

function Scroll_fix(y) {
window.scroll(0,y);
}


