function v_form_newsletter(id){

         if(document.getElementById(id).adres.value==""){

	     alert("Podaj proszę adres e-mail.");
	     document.getElementById(id).adres.focus();
	     return false;    		
	
         }	
	
}

function v_form_kontakt(id){

         if(document.getElementById(id).adres_email.value==""){

	     alert("Podaj proszę adres e-mail.");
	     document.getElementById(id).adres_email.focus();
	     return false;    		
	
         }	
         
         if(document.getElementById(id).tresc_zapytania.value==""){

	     alert("Podaj proszę treść zapytania.");
	     document.getElementById(id).tresc_zapytania.focus();
	     return false;    		
	
         }	         
	
}

function v_form_zapis(id){

         if(document.getElementById(id).imie_i_nazwisko.value==""){

	     alert("Podaj proszę imię i nazwisko.");
	     document.getElementById(id).imie_i_nazwisko.focus();
	     return false;    		
	
         }	
         
         if(document.getElementById(id).adres.value==""){

	     alert("Podaj proszę adres.");
	     document.getElementById(id).adres.focus();
	     return false;    		
	
         }	         
         
         if(document.getElementById(id).wiek.value==""){

	     alert("Podaj proszę wiek.");
	     document.getElementById(id).wiek.focus();
	     return false;    		
	
         }	                  
         
         if(document.getElementById(id).adres_email.value==""){

	     alert("Podaj proszę adres e-mail.");
	     document.getElementById(id).adres_email.focus();
	     return false;    		
	
         }	                           
         
         if(document.getElementById(id).numer_telefonu.value==""){

	     alert("Podaj proszę numer telefonu.");
	     document.getElementById(id).numer_telefonu.focus();
	     return false;    		
	
         }	                                    
         
         if(document.getElementById(id).poziom_deklarowany[0].checked==false && document.getElementById(id).poziom_deklarowany[1].checked==false && document.getElementById(id).poziom_deklarowany[2].checked==false && document.getElementById(id).poziom_deklarowany[3].checked==false && document.getElementById(id).poziom_deklarowany[4].checked==false){

	     alert("Wybierz deklarowany poziom.");
	     document.getElementById(id).poziom_deklarowany[0].focus();
	     return false;    		
	
         }	                                             
	
}

function PokazUkryte(hidden,id)
         {
			 if(document.getElementById(id))
				 document.getElementById(id).style.visibility=hidden;
	     }	

function otworz(url, szerokosc, wysokosc) {
    x = (screen.width/2)-(szerokosc/2); // ustalam współrzędne poziome
    y = (screen.height/2)-(wysokosc/2); // ustalam współrzędne pionowe
 window.open(url,"launch","height="+wysokosc+",width="+szerokosc+",top="+y+",left="+x);
}

