function display_window(image, details) {
var wn = window.open('','aWin','top=0,left=0,width=790,height=610');
wn.document.open();
wn.document.write('<head><title>SeventhWaveCreations Events Photography</title>');
wn.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
wn.document.write('<link rel=stylesheet type="text/css" href="../style.css">');
wn.document.write('</head>');

wn.document.write('<body bgcolor="#000000">');
wn.document.write('<table border="0" cellspacing="10" cellpadding="0">');

wn.document.write('<tr>');
 wn.document.write('<td align="left" valign="top">'); 
 wn.document.write('<img src="../common/spacer.gif" width="50" height="20"></td>');
 wn.document.write('<td align="center"><div class="im_title">');
 wn.document.write('<span style="font-size:9pt; font-weight:bold; color:#ffffff">&copy;SeventhWave</span>');
 wn.document.write('<span style="font-size:9pt; font-weight:bold; color:#ff0000">Creations</span></div>');
 wn.document.write('<img src="../common/spacer.gif" width="10" height="10"></td>');

wn.document.write('</tr>');

wn.document.write('<tr>');
 wn.document.write('<td align="left" valign="top">&nbsp;</td>');
 wn.document.write('<td align="left" valign="top">');
  wn.document.write("<img class=\"img_gall\" src=\"lg/"+image+".jpg\"></td>");
wn.document.write('</tr>');

wn.document.write('<tr>');
 wn.document.write('<td align="left" valign="top">&nbsp;</td>');
 wn.document.write('<td valign="bottom">');
  wn.document.write('<table valign="top" align="center" cellspacing="10"><tr><td align="center">'); 
  wn.document.write('<div class="im_caption">Ref: '+image+'</div>'); 
  wn.document.write('</td></tr></table>');
 wn.document.write('</td>');
wn.document.write('</tr>');

wn.document.write('</table>');
wn.document.write('</body>');
wn.document.write('</html>');
 if (window.focus) {
  wn.focus();
 }
 wn.document.close();
}