/**
 *
 * @access public
 * @return void
 **/
 	var status_ok;

function validate(){
	status_ok = true;
	if (!document.form1.name.value || !document.form1.surname.value || !document.form1.birthday.value || !document.form1.birthmonth.value ||
		!document.form1.birthyear.value || !document.form1.street.value || !document.form1.kod_01.value ||
		!document.form1.kod_02.value || !document.form1.city.value || !document.form1.country.value || !document.form1.tel_stac.value ||
		!document.form1.tel_kom.value || !document.form1.email.value || document.form1.sex.value == '') {

			status_ok = false;
			komunikat = " Nie wszystkie wymagane pola zostaly wypelnione";
	}
	else if (document.form1.kod_01.value.match(/[^0-9]/) || (document.form1.kod_02.value.match(/[^0-9]/)) || document.form1.kod_01.value.length != '2' ||
			document.form1.kod_02.value.length != '3') {

			 	status_ok = false;
			 	komunikat = " Kod pocztowy ma zly format";
	}
	else if ( (parseInt(document.form1.birthday.value) > 31 || parseInt(document.form1.birthday.value) < 1) ||
			 parseInt(document.form1.birthmonth.value) > 12 ||
			 ( parseInt(document.form1.birthyear.value) < 1990 || parseInt(document.form1.birthyear.value) > 1990) ||
			 document.form1.birthday.value.match(/[^0-9]/) || document.form1.birthmonth.value.match(/[^0-9]/) ||
			  document.form1.birthyear.value.match(/[^0-9]/)) {
			 status_ok = false;
			 komunikat = " Nieprawidlowa data urodzenia" ;
	}

	if (status_ok) {
		 	document.form1.submit();
		 }
	else {
		alert(komunikat);
	}
}

function validate_cv(){
	status_ok = true;
	var komunikat = "";

	if (status_ok && !document.form1.email.value.match(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/)) {
		status_ok = false;
		komunikat = " Nieprawidłowy format adresu e-email";
	}
	
	if (document.form1.dd.value > 31) {
		status_ok = false;
		komunikat = "\n Nieprawidłowa data (dzień miesiąca)";
	}

	if (document.form1.mm.value > 12) {
		status_ok = false;
		komunikat += "\n Nieprawidłowa data (miesiąc roku) ";
	}
	
	if (document.form1.rrrr.value < 2006) {
		status_ok = false;
		komunikat += "\n Nieprawidłowa data (rok) ";
	}
	if (document.form1.plik1.value.length == 0) {
		status_ok = false;
		komunikat += "\n Brak polskiej wersji CV ";
	}
	

	if (!document.form1.nazwisko.value || !document.form1.adres.value || !document.form1.tel.value || !document.form1.email.value || !document.form1.dd.value || !document.form1.mm.value || !document.form1.rrrr.value || document.form1.plik1.value.length==0) {
		status_ok = false;
		komunikat += "\n Nie wszystkie wymagane pola zostały wypełnione";
	}
	
	if (status_ok) {
		document.form1.submit();
	}
	else {
		alert(komunikat);
		komunikat = " ";
	}
}

function validate_clientForm(){
	
	status_ok = true;
	if (!document.form1.firma.value || !document.form1.os_kontakt.value || !document.form1.kontakt_bezp.value || !document.form1.kontakt_eemail.value || !document.form1.lokalizacja.value) {
		status_ok = false;
		komunikat = " Nie wszystkie wymagane pola zostały wypełnione";
	}
	if (status_ok && !document.form1.kontakt_eemail.value.match(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/)) {
		status_ok = false;
		komunikat = " Zły format adresu e-email";
	}

	if (status_ok) {
		document.form1.submit();
	}
	else {
		alert(komunikat);
	}
}
