//Programming by Viaden Inc | www.viaden.com
function openimage(imagetitle, image, w, h)
{
	if (!w){w=200};
	if (!h){h=300};
	win1 = open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=1,resizeable=1,width="+w+",height="+h);
	win1.document.open();
	win1.document.write("<html><head><title>"+imagetitle+"</title><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'></head>\n");
	win1.document.write("<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><table width=100% height=100% cellpadding=0 cellspacing=5>\n");
	win1.document.write("<tr><td align=center><img src='"+image+"' border=0></td></tr>\n");
	win1.document.write("</table></body></html>");
}



