function OpenImg(src,width,height) {

  image = window.open('','','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=no, scrollbars=no, status=no');
  image.focus();
  image.document.write('<html><head><title>Autobusy P&V - náhled</title></head><body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"><a href="javascript: window.close();" title="Zavřít okno"><img src="'+src+'" width="'+width+'" height="'+height+'" border="0"></a></body></html>');
  image.document.close();

}
