function wop(url,wnd_name,width,height){w=window.open(url,wnd_name,'width='+width+',height='+height+',status=no,menubar=no,resizable=yes,scrollbars=yes,left='+String((screen.width-width)/2)+',top='+String((screen.height-height)/2));w.focus();return w;}

function view(url,wnd_name,width,height)
{
// Просмотор картинки без скролл-бара и боковых отступов. Извращение, но по другому пока не получилось.
// Работает только для картинок! В url нужно передавать прямую ссылку на картинку!
w = window.open(url,wnd_name,'width='+width+',height='+height+',status=no,menubar=no,resizable=yes,scrollbars=no,left='+String((screen.width-width)/2)+',top='+String((screen.height-height)/2));
w.document.open();
w.document.write('<html><body style="padding: 0; margin: 0;"><img src="'+url+'" width="'+width+'" height="'+height+'" alt=""></body></html>');
w.document.close();
w.focus();
return w;
}
