/* function PhotoWindow   */

function PhotoWindowW(Page,Size) {
		var closeButton = "<div align='center'><form><input type='button' name='button1' value='Close' onClick='window.close();'><\/form><\/div>";
    	PhotoWin = window.open(Page,"swf_file",Size)
		PhotoWin.document.write("<html><head><title>Wampsville 2008</title></head><body bgcolor='#EBE797'><img src=", Page, "><br /><br />")
		PhotoWin.document.write(closeButton)
		PhotoWin.document.write("</body></html>")	
		PhotoWin.document.close()
		}
