var PHOTO_WIDTH = 800;var PHOTO_HEIGHT = 600;function openWindow(image) {/* 	Opens a new window, centered on the page.   	Window contains the fullsize image of a thumbnail.   	Write a close window link */   		w = PHOTO_WIDTH;	h = PHOTO_HEIGHT + 50;		windowleft = (screen.width - w)/2;	windowtop = (screen.height - h)/2;		settings = "'toolbar=no,directories=no,menubar=no,scrollbars=no,resizable=no,status=no,width="+w+",height="+h+",left="+windowleft+",top="+windowtop+"'";		newWin = window.open('','fullsize',settings);		newWin.document.write('<html><head><title>Lifelines Press Gallery: Fullsize image</title>');	newWin.document.write('<link rel="stylesheet" type="text/css" href="css/popup.css" /></head><body>');	newWin.document.write('<img src="../wp-content/uploads/gallery/'+image+'.jpg" width="'+PHOTO_WIDTH+'" height="'+PHOTO_HEIGHT+'" alt="Fullsize image" />');		newWin.document.write('<a href="javascript:window.close();">Close this window</a>');		newWin.document.write('</body></html>');		newWin.document.close();		newWin.focus();}