// JavaScript Document function bookmarksite(title, url){ if (document.all){ window.external.AddFavorite(url, title); }else if (window.sidebar){ window.sidebar.addPanel(title, url, "") } } function WindowPopup(pageURL,popupName,h,w,showScrolls) { window.open (pageURL, popupName, "width=" + w + ",height=" + h + ",screenX=20,screenY=20,left=20,top=20,resizable=yes,status=no,toolbar=no,scrollbars="+showScrolls); }