// Common JavaScript used throughout site function OpenWindow(pFileName,pTitle,pCaption,pWidth,pHeight) { NewWindow=window.open("","Image","width=" + pWidth + ",height=" + pHeight + ",screenX=25,screenY=25,left=25,top=25"); NewWindow.document.write (''); NewWindow.document.write ('' + pTitle + ''); NewWindow.document.write (""); NewWindow.document.write ('
' + pTitle + '
'); NewWindow.document.write ("(Click image or outside frame to close image)"); NewWindow.document.close(); //In Netscape bring the window to the front if(navigator.appName.substring(0,8) == "Netscape") NewWindow.focus(); }