/**
 * @author Administrator
 */
function validacja()
{
	var imie=document.getElementById('imie');
	var tel=document.getElementById('telefon');
	var email=document.getElementById('email');
	var sel=document.getElementById('interesuje_mnie');
	var box=document.getElementById('zgoda1');
	var wynik=true;
	var info='';
	
	if(imie.value.length <2 ){
		info+=('Podaj imie i nazwisko\n\n');
		imie.style.backgroundColor="red";
		wynik=false;
	}else
		imie.style.backgroundColor="white";
	if(tel.value.length <6){
		info+=('podaj nr telefonu\n\n');
		tel.style.backgroundColor="red";
		wynik=false;
	}else
		tel.style.backgroundColor="white";
	if(!email_validate(email.value)){
		info+='Błędny e-mail\n\n';
		email.style.backgroundColor="red";
		wynik=false;
	}else
		email.style.backgroundColor="white";
	if(sel.value=='0'){
		info+=('Wybierz co cię interesuje\n\n');
		wynik=false;
	}
	
	if(!box.checked){
		info+=('Nie wyraziłeś zgody na przetwarzanie danych osobowych\n\n');
		wynik=false;
	}	
	
	if(!wynik)
		alert(info);
	
	return wynik;
}
function validacja2()
{
	var imie=document.getElementById('imiek');
	var tel=document.getElementById('telefonk');
	var email=document.getElementById('emailk');
	var wiadomosc=document.getElementById('wiadomosck');
	var box=document.getElementById('zgoda1');
	var wynik=true;
	var info='';
	
	if(imie.value.length <2 ){
		info+=('Podaj imie i nazwisko\n\n');
		imie.style.backgroundColor="red";
		wynik=false;
	}else
		imie.style.backgroundColor="white";
	if(tel.value.length <6){
		info+=('podaj nr telefonu\n\n');
		tel.style.backgroundColor="red";
		wynik=false;
	}else
		tel.style.backgroundColor="white";
	if(!email_validate(email.value)){
		info+='Błędny e-mail\n\n';
		email.style.backgroundColor="red";
		wynik=false;
	}else
		email.style.backgroundColor="white";
	if(wiadomosc.value.length<2){
		info+=('Podaj tresc wiadomosci\n\n');
		wiadomosc.style.backgroundColor="red";
		wynik=false;		
	}else
		wiadomosc.style.backgroundColor="white";
	
	if(!box.checked){
		info+=('Nie wyraziłeś zgody na przetwarzanie danych osobowych\n\n');
		wynik=false;
	}	
	
	if(!wynik)
		alert(info);
	
	return wynik;
}
function phone_validate(nr)
{
	var reg = /^[a-zA-Z0-9._-]+@([a-zA-Z0-9.-]+\.)+[a-zA-Z0-9.-]{2,4}$/;
  	return reg.test(src);
}
function email_validate(src)
{
  var reg = /^[a-zA-Z0-9._-]+@([a-zA-Z0-9.-]+\.)+[a-zA-Z0-9.-]{2,4}$/;
  return reg.test(src);
}
function get_page()
{
	var oddzial=document.getElementById('nasze_oddzialy');
	if(oddzial.value=='Opole')
		window.location ='http://www.sukces-finanse.pl/pl/oddzial_opole.html';
	if(oddzial.value=='Czestochowa')
		window.location ='http://www.sukces-finanse.pl/pl/oddzial_czestochowa.html';
}

