function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
/*
Go to Top
*/
 
 var y = 0;
 var ny = 0;
 var speed = 0;
 var scrollSize =0.8;

function pagetop(){
	var rep = setTimeout("pagetop()", speed)
	
	// for ie
	 if(document.all){
		y = document.body.scrollTop;
 	}
	// for nn, nc
	 else if(document.layers || document.getElementById){
		y = pageYOffset;
	 }

	 if(ny == y){ // If it finished the scroll, process end.
 		clearTimeout(rep);
	 }
	 else{
		ny = y;
	 }

	 y = y *0.8 ;
	window.scrollTo(0,y); // process of scroll

}
