var newwin;
function show_pic_zoom(f_name,pic_x,pic_y,title_str)
{
var NewWinFeatures="dependent=1,width="+pic_x+",height="+pic_y+",menubar=0,toolbar=0,location=0,scrollbars=0,status=0,resizable=0,hotkeys=0";
var pic_name="<DIV align=\"center\"><A href=\"javascript:window.close()\"><IMG src=\""+f_name+"\" width="+pic_x+" heigh="+pic_y+" border=0 alt=\"Закрыть окно\"></A>";
title_str="<TITLE>"+title_str+"</TITLE>";
newwin=window.open("","NovoeOkno",NewWinFeatures);
newwin.document.open();
newwin.document.write("<HTML>");
newwin.document.write(title_str);
newwin.document.write("<BODY topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
newwin.document.write(pic_name);
newwin.document.write("</DIV>");
newwin.document.write("</BODY>");
newwin.document.write("</HTML>");
newwin.document.close();
}