function NewWindow(location, name) { var properties; var size; var WindowHandle; var sMenu="No" if (document.location.href.match(/localhost/ig)!=null) sMenu = "Yes"; size = "width=" + (screen.width-12) + ",height=" + (screen.availHeight-12) + ",left=0,top=0"; properties = "toolbar=no," + size + ",directories=no,location=no,status=yes,scrollbars=yes,resizable=yes,border=0,menubar=" + sMenu + ",left=0,right=0"; WindowHandle = window.open(location, name, properties) } function WindowMaxSize(w) { if (w && w.open && !w.closed) { w.moveTo(0,0); if (document.all) w.resizeTo(screen.availWidth,screen.availHeight); else w.resizeTo(screen.availWidth-12,screen.availHeight-48); } } function Travel(name, loc) { NewWindow(loc,name) } function bookmark(urlAddress,pageName) { if (window.external) { window.external.AddFavorite(urlAddress,pageName) } else { alert("Please press CTRL + D to bookmark this page"); } return false }