function OpenIm(src) {		
newWindow = window.open("","newWindow","width=800,height=600,left=0,top=0");
newWindow.document.open();
newWindow.document.write('<html><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251"><title>Увеличенный просмотр</title></head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor=#FFFFFF onBlur="self.close()" onClick="self.close()">');
newWindow.document.write('<img src='+src+' /></body></html>');
newWindow.document.close();
	}
	
function OpenImage(src, Width, Height) {
WidthF = parseInt(Width);
HeightF = parseInt(Height);		
newWindow = window.open("","newWindow","width="+WidthF+",height="+HeightF+",left=0,top=0");
newWindow.document.open();
newWindow.document.write('<html><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251"><title>Увеличенный просмотр</title></head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor=#FFFFFF onBlur="self.close()" onClick="self.close()">');
newWindow.document.write('<img src='+src+' width='+WidthF +' height='+HeightF+' /></body></html>');
newWindow.document.close();
	}