function OpenScrollingPopup(URL, width, height) {
   var remote = window.open(URL, "popup", "width=" + width + ",height=" + height + ",toolbar=1,location=1,directories=1,resizable=1,status=1,menubar=1,scrollbars=1");
   if (navigator.appName.substring(0,8) == "Netscape")
remote.focus();
}
