function Photo( id, name, image, width, height )
{
windowLeaving=window.open("",id,"scrollbars=no,toolbar=no,location=no,directories=no,status=no,width="+width+",height="+height+"" );
windowLeaving.document.open();
windowLeaving.document.writeln("<html><head><title>"+name+"</title>"+"<body onload='window.focus();' onblur='self.close();' bgcolor='#ffffff' text=white  topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>"+'<img src="http://www.intelservice.ru/C3256CAE0025323B/0/a2d05d04bb5c3353c3256cae00383da1/$file/' + image + '" border=0>'+'</head></html>');
windowLeaving.document.close();
return false;
}

