function imgPopup(linka,sirka,vyska){
  var popup=window.open('',null,"outerwidth="+(sirka)+",width="+(sirka)+",height="+(vyska)+"directories=0,location=0,menubar=0,resizable=0,status=0,scrollbars=0,toolbar=0");
  var tmp = popup.document;
	tmp.write('<html><head><title>Foto</title>');
	tmp.write('<style type="text/css" rel="stylesheet">body {margin: 0px; padding: 0px; text-align: center;}</style>');
/*	tmp.write('</head><body><p>this is once again a popup.</p>');*/
	tmp.write('<a href="javascript:window.close()"><img src="'+linka+'" border="0"/></a>');
	/*tmp.write('<p><a href="javascript:self.close()">close</a> the popup.</p>');*/
	tmp.write('</body></html>');
	tmp.close();
  return false;
}

