
var position = 1;
function goPageTop() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat") {
      var scrPx = document.body.parentNode.scrollTop;
   } else {
      var scrPx = document.body.scrollTop;
   }
   
   if(position < 50 && scrPx) {
      scrPx = (scrPx > 2) ? Math.ceil(scrPx*.10) : 1;
      position++;
      scrollBy(0, -scrPx);
      setTimeout("goPageTop()", 5);
  	  position = 1;
   }else{
      scrollTo(0, 0);
      position = 1;
   }
}