
	var hWnd1;

	function openwin(img , w , h)
	{
		if(hWnd1!=null)
		hWnd1.close();
		hWnd1=window.open(img,"","toolbar=no,location=no,directories=no,resizable=no,width="+w+",height="+h);
		hWnd1.document.open();
		hWnd1.document.write("<html>");
		hWnd1.document.write("<head>");
		hWnd1.document.write("<title>Увеличенное изображение</title>");
		hWnd1.document.write("</head>");
		hWnd1.document.write("<body bgcolor=#ffffff bottommargin=0 leftmargin=0 marginheight=0 marginwidth=0 rightmargin=0 topmargin=0 style='border:0px;'>");
		hWnd1.document.write("<table align=center width=100% height=100% cellspacing=0 cellpadding=0 border=0>");
		hWnd1.document.write("<tr><td><img src='"+img+"' border=0></td></tr>");
		hWnd1.document.write("</table></body></html>");
		hWnd1.document.close();
	}

	function pics( img , url ) {
		document.images[img].src = url;
	}
