function Popup(url, h, w, title) {
var poph = + h + 40 
var popw = + w + 15
if(screen.width){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  }else{winl = 0;wint =0;}
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=" + winl + ",top=" + wint + "");
var content = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3c.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><HTML>';
content += '<HEAD>';
content += '<title>Avtotehnika</title>';
content += '</HEAD>';
content += '<BODY style="margin: 5px; padding: 0px;" link="#262626" alink="#262626" vlink="#262626" bgcolor="#EBF2F3">';
content += '<div align="center"><table width="' + w + '" border="0" cellpadding="0" cellspacing="0"><tr><td colspan="2"><a href="#" onClick="self.close()"><img style="border: 1px solid #525252" src="' + "../photos/large/" + url + '" height="' + h + '" width="' + w + '" border="0" alt="' + title + '" /></a></td></tr>';
content += '<tr><td valign="top" align="left"><font style="font-family: Tahoma; font-size: 11px;"><b>' + title + '</b></font></td><td valign="top" align="right"><font style="font-family: Tahoma; font-size: 11px;"><a href="#" onClick="self.close()">Zapri okno</a></font></td></tr></table>';
content += '</div></BODY></HTML>';
disp.document.write(content);
disp.document.close();
}