var newWindowfunction showBigPhoto(imgName, imgWidth, imgHeight, imgTitle) {imgHeight = imgHeight + 35;imgWidth = imgWidth + 20;newWindow = window.open("","_blank", "screenX=40, screenY=40, menubar=no, resizable=no, scrollbars=no, status=no, toolbar=no, width=" + imgWidth + ", height=" + imgHeight);if(!newWindow.opener) {newWindow.opener = window;}writeToWindow("images/" + picDir + "/Photos/" + imgName + ".jpg", imgTitle);newWindow.focus();}function writeToWindow(imgSource, imgTitle) {content = "<html>";content = content + "<head>";content = content + "<LINK REL=stylesheet HREF='styles/pic.css' TYPE='text/css'>";content = content + "</head>";content = content + "<title>" + imgTitle + "</title>";content = content + "<body>";content = content + "<p><a href=javascript:close()>Close Window</a></p>";content = content + '<img src="' + imgSource + '">';content = content + "</body>";content = content + "</html>";newWindow.document.write(content);newWindow.document.close();}