function okno(adres) {
      var nazwa = "Logistyka_Szkolen";
      var dane= "menubar=no, toolbar=no, location=no, scrollbars=yes, resizable=no, status=no, width=550, height=520";
      noweOkno = window.open(adres, nazwa, dane);
    }

function pokaz_div(div,x,t)
{
	div_=document.getElementById(div);
 	if(x>0) { div_.style.visibility="visible"; div_.style.display="block";  }
 	else { div_.style.visibility="hidden" ;  div_.style.display="none"; }
}
function limit_short(text,max)
{
  if(text.value.length>max)
  {
   	text.value=text.value.substring(0,max);
  }
  else text.form.licznik_short.value=(max-text.value.length);
}
function limit(text,max)
{
  if(text.value.length>max)
  {
   	text.value=text.value.substring(0,max);
  }
  else text.form.licznik_opis.value=(max-text.value.length);
}
function limit_slowa(text,max)
{
  if(text.value.length>max)
  {
   	text.value=text.value.substring(0,max);
  }
  else text.form.licznik_slowa.value=(max-text.value.length);
}
function check(text)
{
  if(text.form.temat.value!='' && text.form.podpis_short.value!='' && text.form.podpis.value!='' && text.form.slowa_kluczowe.value!='')
  {
   	text.form.akcja.disabled=0;
  }
  else text.form.akcja.disabled=1;
}

