function openwin(filename)
{
nw=window.open('','NewWin','fullscreen');
nw.document.write("<html><head><title>View Picture</title></head><body bgcolor='#FFFFFF' text='#001d55'>"
	+ "<TABLE align=center><TR><TD><P align=center><IMG src='"
	+ filename
	+ "' border='2' style='border-color: White;'></P>"
	+ "</TD></TR><TR><TD><font face='Arial' size='-1'><b><P align=center>" + filename + "</P></b></font>"
	+ "</TD></TR></TABLE>"
	+ "<hr width='70%'>"
	+ "<center><font face='Arial' size='-1'><a href='javascript:window.close()' style='color: Black;'>CLOSE</a></b></font></center>"
	+ "</body></html>");
}