function show(name, url, w, h)
	{
	ww=w+20;
	hw=h+20;
    wi=w;
    hi=h;
    ll=(screen.width-w)/2;
    tt=(screen.height-h)/2;
	openview=window.open("",name,'width='+ww+',height='+hw+',toolbar=no,top='+tt+',left='+ll+',location=no,directories=no,status=no,menubar=no,scrollbars=no');
	openview.document.writeln("<html><head><title>Просмотр фото</title>");
	openview.document.writeln("</head>");
	openview.document.writeln("<body bgColor='#ffffff' leftMargin='0' topMargin='0' marginwidth='0' marginheight='0'>");
	openview.document.writeln("<table width='100%' height='100%' border='0' cellpadding='0' cellspacing='0'>");
	openview.document.writeln("<tr><td align='center' valign='middle'><img border='0' src='"+url+"' width='"+wi+"' height='"+hi+"' border='0' alt=''></td></tr>");
	openview.document.writeln("</table></body></html>");
	openview.focus();
	}
