// (c)2005 Engineering Solutions Inc.// Revisions// 12-13-05 Removed name from window.open so each call opens a new window.// Popup Windowfunction popupold(theWindow,theWidth,theHeight) {	msgWindow=window.open	(theWindow,"displayWindow","toolbar=no,scrollbars=no,height=" + theHeight + ",width=" + theWidth + ",locationbar=no,personalbar=no,statusbar=no")	}// Pop up window with title set, theWidth and theHeight are actual size if imagefunction popup(title,img,theWidth,theHeight) {	msgWindow=window.open("","","menubar=yes,height=" + (theHeight+40) + ",width=" + (theWidth+40) + ",toolbar=no,scrollbars=no,locationbar=no,personalbar=no,statusbar=no")	//msgWindow=window.open("","","menubar=yes,innerHeight=" + (theHeight+40) + ",innerWidth=" + (theWidth) + ",toolbar=no,scrollbars=no,locationbar=no,personalbar=no,statusbar=no")	msgWindow.document.write("<html><head><title>" + title + "</title></head>")	msgWindow.document.write("<body bgcolor=\"#ffffff\"><font size=\"3\" face=\"Verdana,Geneva\"><table width=\"100%\"><tr><td align=\"center\" valign=\"middle\"><img src=\"" + img + "\"></td></tr></table><p>&nbsp;</p>")	//msgWindow.document.write("<center><P><INPUT TYPE=\"button\" VALUE=\"Close Window\" onClick=\"self.close()\"></P></center>")	msgWindow.document.write("</body></html>")	}
