function OpenImage(imagename,namewin,imgwidth,imgheight){
	var img=new Image();
	img.hspace=0;
	img.vspace=0;
	img.src=imagename;
	ww=imgwidth;
	wh=imgheight;
	newWindow=window.open("","new","WIDTH="+(ww+2)+" TOP="+(Math.round(window.screen.availheight/2-wh/2))+" LEFT="+(Math.round(window.screen.availWidth/2-ww/2))+" HEIGHT="+(wh+2));
	newWindow.document.write('<html>');
	newWindow.document.write('<head>');
        newWindow.document.write('<title>'+namewin+'</title>');
	newWindow.document.write('</head>');
	newWindow.document.write('<body bottommargin="0" topmargin="0" rightmargin="0" leftmargin="0" bgcolor="#808080">');
	newWindow.document.write('<table width="'+ww+'" height="'+wh+'" align="center" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle"><a href onClick="self.close()" ><img src="'+img.src+'" alt="Закрыть окно" name="im" id="im" hspace="0" vspace="0" border="1"></a></td></tr></table>');
	newWindow.focus();
};
