function ShowBigImage (fname,winname,title0,extcomm,imgw,imgh)
{
var toindex='',title;
//var i,s,s2,p,no=-1;

title=(title0.length>0 ? title0:'Фото');
imgcomm=(extcomm.length>0 ? extcomm:'');
//toindex='<br><br><a href='+bigs_indexhtm+'>к статье</a>';

bigimgWindow=window.open("",winname,"scrollbars=1 resizable=1 width="+(70+imgw)+" height="+(100+imgh));
//bigimgWindow.document.write("<HEAD><TITLE>Message window</TITLE></HEAD>");
//bigimgWindow.document.write("<CENTER><BIG><B>Hello, world!</B></BIG></CENTER>");

//document.open();
bigimgWindow.document.writeln('<HTML><HEAD><TITLE>'+title+'</TITLE>');
bigimgWindow.document.writeln('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; Charset=Windows-1251">');
bigimgWindow.document.writeln('<LINK rel="stylesheet" href=../main.css type="text/css">');
//document.writeln('<script language="JavaScript" src="bigs-ru.js"></script>');
//document.writeln('<script language="JavaScript" src="../_misc/big.js"></script>');
bigimgWindow.document.writeln('</HEAD>');

bigimgWindow.document.writeln('<BODY bgcolor=#f4eee2 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><a name=pagetop></a><TABLE align=center><tr><td>');
bigimgWindow.document.writeln('');
bigimgWindow.document.writeln('<a href="javascript:window.close();" alt="Закрыть" title="Закрыть">');
bigimgWindow.document.writeln('<img src='+fname+' border=0 width='+imgw+' height='+imgh+'></a><br>');

bigimgWindow.document.writeln('<div class=bigImgComm>'+imgcomm+'</div><br>');
//	'</font><font class=bigImgToArticle>'+toindex+'</font></div><br>');
bigimgWindow.document.writeln('<div class=bigImgClose><a href="javascript:window.close();" alt="Закрыть" title="Закрыть">закрыть</a></div><br>');

bigimgWindow.document.writeln('</TABLE></BODY></HTML>');
bigimgWindow.document.close();

}

