function openimage(imagetitle, image, w, h, res)
{
	if (!w){w=300};
	if (!h){h=300};
	if (res)
	{
		win1 = open("", "_blank");
	}
	else
	{
		win1 = open("", "_blank", "toolbar=0, status=0,location=0,menubar=0,directories=0,scrollbars=0,resizeable=0,width="+w+",height="+(h+40));
	}
	win1.document.open();
	win1.document.write("<html><head><title>"+imagetitle+"</title><link rel=stylesheet href=css/style.css></head>\n");
	win1.document.write("<body><table bgcolor=#FFFFFF width=100% height=100% cellpadding=0 cellspacing=5>\n");
	win1.document.write("<tr><td align=center><img src='images/"+ image +"' border=0></td></tr>\n");
	win1.document.write("<tr><td align=center><a href=javascript:window.close()>Close the window</a></td></tr>\n");
	win1.document.write("</table></body></html>");
}
