    function popwin(aTagRef, popwidth, popheight){
      var href = aTagRef.href;
      var features = "width=" + popwidth + ", height=" + popheight + ", resizable, scrollbars=auto";
      window.open(href, "popup", features);
      return false;
    }

function goToTop(){
  window.scrollTo(0, 0);
}