function showimg(image_url,image_width,image_height,doc_title,img_caption)
{
	var strImg="<img align=center src="+image_url+" width="+image_width+" height="+image_height+">";
	var w = image_width;
	var h = image_height+20;
	var str="top=100,left=300,status=0,menubar=0,resizeable=0,location=0,toolbar=0,fullscreen=0,scrollbars=0,"+"height="+h+",width="+w;
    var win=window.open("","", str);
    win.focus();
    win.document.writeln("<HTML>");
    win.document.writeln("<HEAD>");
    win.document.writeln("<TITLE>"+doc_title+"</TITLE>");
    win.document.writeln("<META content='text/html; charset=koi8-r' http-equiv=Content-Type>");
    win.document.writeln("</HEAD>");
    win.document.writeln("<BODY bgcolor=#ffffff link=#0000FF vlink=#771D79 alink=#ff0000 text=#000000 topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0>");
    win.document.writeln("<center>");
    win.document.writeln("<table width=100% height=100% cellspacing=0 cellpadding=0 border=0><tr>");
    win.document.writeln("<td align=center valign=middle>");
    win.document.writeln(strImg);
    win.document.writeln("</td></tr>");
    win.document.writeln("<tr><td align=center valign=middle>");
    win.document.writeln("<b>"+img_caption+"</b>");
    win.document.writeln("</td></tr>");
    win.document.writeln("</table>");
    win.document.writeln("</center>");
    win.document.writeln("</BODY>");
    win.document.writeln("</HTML>");
}     
          
function maxpic(name,x,y) {
	var win = window.open('','_blank',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+x+",height="+y);
	win.document.open("text/html");
	with (win.document) {
	    write('<html><head><title></title><script language="JavaScript">self.focus()</script></head><body style="background:#fff;margin:0;padding:0;"><a href="#" onclick="window.close()"><img width="'+x+'",height="'+y+'" src="'+name+'"');
	    write(' alt="закрыть" style="border:0;"></a></body></html>');
	    close();
 }
}
