function open_photo(name,width,height)
{
var photo = window.open('','_blank','width='+width+',height='+height+',titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
photo.document.write("<body marginheight=0 marginwidth=0 leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0");
photo.document.write("<div align=center>");
photo.document.write("<span title='Кликните, чтобы закрыть'>");
photo.document.write("<img src='"+name+"' width="+width+" height="+height+" border='0' onclick='window.close();'>");
photo.document.write("</span></div></body>");
photo.focus();
}	
