/*mail:*/
function kontrola() {
 if ((document.moj.meno.value!="")&&(document.moj.email.value!=""))
  pok=true;
 else {
  alert("Nevyplnili ste Meno alebo E-mail");
  pok=false;
 }
}
/*images-ACP Watch*/
var myImgWin = window.myImgWin;
function OpenImgWin(link,winName)
{
 var retValue=true;
 if (myImgWin!=null && !myImgWin.closed){
  myImgWin.focus();
  myImgWin.location.href=link.href;
 }
 else{
  myImgWin=window.open(link.href,winName);
  if (myImgWin==null || typeof(myImgWin)=="undefined")
   retValue=false;
  else{
   link.target=winName;
   myImgWin.focus();
  }
 }
 return retValue;
}
/*images-knurr*/
function PopupPic(PicURL)
{
 var s=window.open(PicURL, "", "resizable=0,toolbar=no,width=640,height=480,top=10,left=10");
 s.document.open();
 s.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
 s.document.write('<html><head><title>Obrázok</title>');
	s.document.write('<style type="text/css">body, a{background: Black none;color: White;text-align: center;margin: 2px;border:0;padding:0;}img{border-width: 0;}</style>');
	s.document.write('<script type="text/javascript">function FitPic() {iWidth=document.body.clientWidth;iHeight=document.body.clientHeight;iWidth=document.images[0].width-iWidth+10;iHeight=document.images[0].height-iHeight+25;window.resizeBy(iWidth, iHeight);self.focus();};</script></head>');
 s.document.write('<body onload=\'FitPic();\'><a href="javascript:window.close()"><img src="'+PicURL+'" alt="Click the image to close this window."></a><br><a href="javascript:window.close()">[Zatvoriť]</a></body></html>');
 s.document.close();
 return true;
}
