//powiekszenia obrazków
function img_zoom(nazwa,x,y)
{
 if (y>screen.height)
  {
   x = x + 20;
   y = screen.height-100;
  }
 x = x+15;
 y = y+15;  
 okno=window.open("", "","scrollbars=yes, status=no, width="+x+", height="+y)
 napis="<html><head><title>Powiekszenie</title><style type=\"text/css\">body {background: url(img/loading.gif) fixed no-repeat center; }</style></head><body><div style='position:absolute; left:0; top:0'><a href='javascript:window.close()'><img src=\""+nazwa+"\" border=0></a></div></body></html>"
 okno.document.write(napis)
}

function check_newsletter(email, tryb)
{
 //Kontrola E-mail [Robert Ku¶mierz | www.rob2.prv.pl | robertkusmierz(at)wp.pl]
 wzor_email=/^[0-9a-z.-]+(@|\(at\))+[0-9a-z._-]+\.[a-z]{2,3}$/i;
 pole = eval(email);
 pole = pole.value;
 if (!wzor_email.test(pole)) { alert("E-mail niepoprawny."); return false; }
 else 
 {          
  document.newsletter.tryb.value=tryb;
  document.newsletter.submit();
  return true; 
 }
}

//nowe okno o okreslonych wymiarach
function reklama_window(plik,sze,wys,id)
{
 window.open(plik,id,'toolbar=no,scrollbars=no,resizable=no,status=no,menubar=no,location=no,directories=no,width='+eval(sze)+',height='+eval(wys)+',left=10, top=10')
}
