function viewPPT(theFile,theTitle) { var pptWindow = window.open("gis_ppt.php?ppt="+theFile+"&title="+theTitle,"ppt","width=400,height=300,resizable=yes,scrollbars=yes,toolbar=yes,status=yes,menubar=yes,location=yes") pptWindow.focus() // this line just brings the window to the front if it's already been opened } function linkWindow(theURL) { var theWindow = window.open("http://" + theURL,"otherSite","width=400,height=300,resizable=yes,scrollbars=yes,toolbar=yes,status=yes,menubar=yes,location=yes") theWindow.focus() // this line just brings the window to the front if it's already been opened } function jumpPage(newLoc) { newPage = newLoc.options[newLoc.selectedIndex].value if (newPage != "") { window.location.href = newPage } } function display_content_popup(pid) { var win = window.open("popup.php?pid="+pid,"popup_content","width=720,height=740,resizable=yes,scrollbars=yes,toolbar=yes,status=yes,menubar=no,location=no") win.focus() // this line just brings the window to the front if it's already been opened }