function OpWinImg(tit,urlpic,iw,ih,autor){
id="displayWindow";
if (width < 800) {
Widb=window.open("",id,'alwaysRaised,toolbar=0,scrollbars=0,location=0,directories=0,status=0,menubar=0,width='+iw+',height='+ih+',border=thin,top=0,left=0,help=0');
}
if (width < 1024) {
Widb=window.open("",id,'alwaysRaised,toolbar=0,scrollbars=0,location=0,directories=0,status=0,menubar=0,width='+iw+',height='+ih+',border=thin,top=45,left=85,help=0');
}
if (width >= 1024) {
Widb=window.open("",id,'alwaysRaised,toolbar=0,scrollbars=0,location=0,directories=0,status=0,menubar=0,width='+iw+',height='+ih+',border=thin,top=107,left=197,help=0');
}
  Widb.document.open();
  Widb.focus();
  
  // Создаем документ
  Widb.document.write("<html><head><title>"+tit+"</title></head>");
  Widb.document.write("<body bgcolor='\#999999' leftmargin=\"0\" topmargin=\"0\">");
  Widb.document.write(urlpic);
  Widb.document.write("<p align='center'><b>"+autor+"</b></p>");
  Widb.document.write("</body></html>");

  // закрываем документ (НО НЕ ОКНО) 
  Widb.document.close();  
}

