// Common JavaScript used throughout site //Show and hide tips on the navigator links function showtip(current,e,text){ if (document.all){ thetitle=text.split('
') if (thetitle.length>1){ thetitles=''; for (i=0;i'+text+'') document.tooltip.document.close(); document.tooltip.left=e.pageX+1; document.tooltip.top=e.pageY+1; document.tooltip.visibility="show"; } } function hidetip(){ if (document.layers) {document.tooltip.visibility="hidden";} } 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(); }