function imagewindow (src, pagetitle) {
	var w = window.open('','_blank','toolbar=no,resizable=yes,scrollbars=yes');
	with (w.document) {
		open();
		writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
		writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
		writeln('<head><title>' + pagetitle + '</title>');
		writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
		writeln('</head>');
		writeln('<body style="margin: 10px; text-align: center; font: 78%/1.3em verdana, helvetica, arial, sans-serif;">');
		writeln('<a href="#" onclick="window.close();"><strong>Close window</strong></a><br /><br />');
		writeln('<img src="' + src + '"><br />');
		writeln('<br /><a href="#" onclick="window.close();"><strong>Close window</strong></a>');
		writeln('</body></html>');
		close();
	}
}