function checkMail(mail)
{
   var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
   if (filter.test(mail)) return true;
   else return false;
}

function spr_form()
{
   f = document.getElementById('formularz');
   
   var mes = "";

   if(f.imie.value=="") mes += "- Podaj imię\n"; 
   if(!checkMail(f.email.value)) mes += "- Podaj poprawny adres e-mail\n";  
   if(f.temat.value=="") mes += "- Podaj temat wiadomości\n"; ;
   if(f.tresc.value=="") mes += "- Podaj treść wiadomości\n";  
   

   if(mes)
   {   
      alert("Błędne dane:\n\n"+mes)
      return false;
   }
   return true;
}



function spr_form2()
{
   f = document.getElementById('formularz');
   
   var mes = "";

   if(f.imie.value=="") mes += "- Podaj imię\n"; 
   if(f.tresc.value=="") mes += "- Podaj treść wpisu\n";  
   

   if(mes)
   {   
      alert("Błędne dane:\n\n"+mes)
      return false;
   }
   return true;
}




k1=0;
k2=1;
k3=2;
function showtab(id)
{
 elem=document.getElementById('dva'+id)
 eval('stan=k'+id)
 if (stan==id-1) { elem.style.display=''; } else { elem.style.display='none'; }
 eval('k'+id+'=1-stan');
}

function checkjs()
{
document.myform.js.value = 0;
}