var height = 600;
var width = 760;

function openImg(src,alt) {

  image = window.open('','image','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=no, scrollbars=no, status=no');
  image.focus();
  image.document.write('<html><head><title>Obchod E-mozaika - e-shop na dětské oblečení a bytový textil</title></head><body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" align="center"><a href="javascript: window.close();"><img src="'+src+'" alt="'+alt+'" border="0" /></a></body></html>');
  image.document.close();

}

