var newwindow

function popimage(url , title , note) {
	if (newwindow && !newwindow.closed)
		{ newwindow.focus(); newwindow.document.clear() }
	else
		{ newwindow=window.open('','','width=875,height=615,top=50,left=50') }
newwindow.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
newwindow.document.writeln('<html>');
newwindow.document.writeln('<head>');
newwindow.document.writeln('<title>' + title + ' Image<\/title>');
newwindow.document.writeln('<\/head>');
newwindow.document.writeln('<body>');
newwindow.document.writeln('<div style="margin-top: 5px"><center><img src="' + url + '" alt="Image">');
newwindow.document.writeln('<br>' + note + '<br>');
newwindow.document.writeln('<a href="javascript: self.close()" style="text-decoration:none; color:#000000;"><strong>[Close Window]<\/strong><\/a>');
newwindow.document.writeln('<\/center>');
newwindow.document.writeln('<\/div>');
newwindow.document.writeln('<\/body>');
newwindow.document.writeln('<\/html>');
newwindow.document.close();
}