jQuery(document).ready(		
function()
{
	
}		
				
);
function verifyEmail(mail){
	var status = false;     
	var emailRegEx = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i;
	     if (mail.search(emailRegEx) == -1) {
	          
	     }	     
	     else {
	          
	          status = true;
	     }
	     return status;
	}


function Validate()
{
	var poprawny = true;
	var wiadomosc = '';
	
	if($('#phonePrefix').val() == '' || $('#phone').val() == '')
	{			
		poprawny = false;
//		alert("Proszę wypełnić pole 'Numer telefonu'");
		wiadomosc += "Proszę wypełnić pole 'Numer telefonu'\n";
	}
	if($('#name').val() == '')
	{			
		poprawny = false;
//		alert("Proszę wypełnić pole 'Miasto'");
		wiadomosc += "Proszę wypełnić pole 'Miasto'\n";
	}
	if($('#mail').val() == '')
	{			
		poprawny = false;
//		alert("Proszę wypełnić pole 'Adres e-mail'");
		wiadomosc += "Proszę wypełnić pole 'Adres e-mail'\n";
	}
	else
	{
		if(verifyEmail($('#mail').val()))
		{
			
		}
		else
		{
			poprawny = false;
//			alert('Proszę podać poprawny adres e-mail');
			wiadomosc += "Proszę podać poprawny adres e-mail\n";
		}
	}
	if($('#regulamin:checked').val() != 1)
	{			
		poprawny = false;
//		alert("Aby wysłać formularz, niezbędna jest akceptacja regulaminu.'");
		wiadomosc += "Aby wysłać formularz, niezbędna jest akceptacja regulaminu.'\n";
	}
	
	if( !poprawny )
		alert( wiadomosc );

	return poprawny;
}
