function makePage(image) {	
	printdow=window.open('','','toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,width=600,height=495');
	printdow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>');
	printdow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><link href="content.css" rel="stylesheet" type="text/css">');
	printdow.document.write('<title>Photo Detail (click picture to close)</title></head>');
	printdow.document.write('<body bgcolor="#DED1A5" text="#000000" link="#000000" vlink="#000000" alink="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	printdow.document.write('<table width="600" border="0" cellspacing="0" cellpadding="0">');
	printdow.document.write('<tr>');
	printdow.document.write('<td align="center" valign="top"><p><a href="javascript:window.close();"><img src="../images/close.jpg" alt="close" width="600" height="29" border="0"></a><br>');
	printdow.document.write('<br>');
	printdow.document.write('</p>');
	printdow.document.write('</td>');
	printdow.document.write('</tr>');
	printdow.document.write('<tr>');
	printdow.document.write('<td align="center"><a href="javascript:window.close();">');
	printdow.document.write('<img src="'+image+'" alt="" border="0"></a><br>');
	printdow.document.write('</td></tr></table></body></html>');
}
