function Okno(lokacja,nazwa,szer,wys)
{
  Nowe=null;
  var winl = (screen.width-szer)/2;
  var wint = (screen.height-wys)/2;
  Nowe=window.open("","",'toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,directories=no,status=no,resizable=no,width='+szer+',height='+wys+',top='+wint+',left='+winl);
  Nowe.document.write('<HTML><HEAD><title>'+nazwa+'</title></HEAD><BODY LEFTMARGIN="0" TOPMARGIN="0"><a href="javascript:window.close();"><img src="'+lokacja+'" BORDER="0" ALT="Kliknij, aby zamkn±æ to okno"></BODY></HTML>');
  Nowe.document.write();
  Nowe.focus() 
}

function Okno_html(lokacja,nazwa,szer,wys)
{
  Nowe=null;
  var winl = (screen.width-szer)/2;
  var wint = (screen.height-wys)/2;
  Nowe=window.open(lokacja,"",'toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,directories=no,status=no,resizable=no,width='+szer+',height='+wys+',top='+wint+',left='+winl);
  Nowe.focus() 
}

function Okno_scroll(lokacja,nazwa,szer,wys)
{
  Nowe=null;
  var winl = (screen.width-szer)/2;
  var wint = (screen.height-wys)/2;
  Nowe=window.open("","",'toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=yes,directories=no,status=no,resizable=no,width='+szer+',height='+wys+',top='+wint+',left='+winl);
  Nowe.document.write('<HTML><HEAD><title>'+nazwa+'</title></HEAD><BODY LEFTMARGIN="0" TOPMARGIN="0"><a href="javascript:window.close();"><img src="'+lokacja+'" BORDER="0" ALT="Kliknij, aby zamkn±æ to okno"></BODY></HTML>');
  Nowe.document.write();
  Nowe.focus() 
}

function Okno_html_scroll(lokacja,nazwa,szer,wys)
{
  Nowe=null;
  var winl = (screen.width-szer)/2;
  var wint = (screen.height-wys)/2;
  Nowe=window.open(lokacja,"",'toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=yes,directories=no,status=no,resizable=no,width='+szer+',height='+wys+',top='+wint+',left='+winl);
  Nowe.focus() 
}

function zablokuj_submit(theform){

if (document.all||document.getElementById){

for (i=0;i<theform.length;i++){
var tempobj=theform.elements[i]
if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")

tempobj.disabled=true
}
}
} 
