  function ShowPhoto(furl,fw,fh, fw1, fh1,fname)
  {
    var fh2 = fh+20;
    var fw2 = fw+20;
    Showin=window.open(furl,"photo","toolbar=no,menubar=no,scrollbars=yes,resizable=no,height="+fh1+",width="+fw1+",top=0,left=50");
    Showin.document.open();
    Showin.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Ñõåìà ïðîåçäà</title>');
    Showin.document.writeln('</head><body style="text-align: center; padding: 5px; background-color: #C0C0C0;"><div style="width: '+fw2+'px; height: '+fh2+'px; background-color: #FFFFFF; border: 1px solid #CCCCCC;"><img src="'+furl+'" alt="" style="width: '+fw+'px; height: '+fh+'px; margin: 10px;"></div></body></html>');
    Showin.document.close();
    Showin.focus();
    return false;
  }
