function show(url, title1, title2, sizex, sizey, alt)
{
var
sizex_win = eval(sizex) + 40;
sizey_win = eval(sizey) + 65;
         new1 = window.open('','title1','resizable=yes,scrollbars=yes,toolbar=no,status=no,width=' + sizex_win + ',height=' + sizey_win);	         
         new1.document.open(); 
	 new1.document.writeln("<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'><title>"+title1+"</title> </head>");
         new1.document.writeln("<body topmargint='0'><center> <img SRC=images/"+url+" width="+sizex+" height="+sizey+" alt='"+alt+"'>");
         // new1.document.writeln(title2);
         new1.document.writeln("<form><INPUT TYPE=BUTTON NAME=Button1 VALUE='Закрыть' OnClick='self.close()'></form>");
         new1.document.writeln("</center></body></html>");
         new1.document.close();
}