function SBI(ImgName,ImgWidth,ImgHeight, ImgPodpis){

var Ver4 = parseInt(navigator.appVersion) >= 4
var Nav4 = ((navigator.appName == "Netscape") && Ver4)
var IE4 = ((navigator.userAgent.indexOf("MSIE") != -1) && Ver4)

var widthdop = 0; 
var heightdop = 0;

if (IE4) { widthdop = 12; heightdop = 27;};

	myWin= open("", "ImgWindow", 
    			"width="+ImgWidth+",height="+ImgHeight+",status=no,toolbar=no,menubar=no,scrollbars=auto,resizable=yes");
	
	myWin.document.write("<html><head><title>"+ImgPodpis);
	myWin.document.write("</title></head><body bgcolor=#ffffff topmargin=0 marginheight=0 leftmargin=0 marginwidth=0>");
	myWin.document.write("<TABLE width=100% height=100%><TR><TD align=center valign=middle style='color: #000000'><a href='javascript:window.close()'>");
	myWin.document.write("<img src='");


	myWin.document.write(ImgName+"' border=0 alt='кликните, чтобы закрыть окно'>");
	myWin.document.write("</a><div style='position: absolute; top: 10px; left: 10px; background-color: #ffffff; font-family: tahoma; font-size: 8pt; color: #000000;'>&nbsp;"+ImgPodpis+"&nbsp;</div></TD></TR></TABLE></body></html>");

	myWin.document.close();  
	myWin.window.focus();

}



