var okFormObj = readyAJAX();
function okForm()
{
	if(okFormObj) 
	{
    	    document.forms["formularz_kontaktowy"].podmiot_kontaktowy.value='';
	    document.forms["formularz_kontaktowy"].adres_email.value='';
	    document.forms["formularz_kontaktowy"].nr_telefonu.value='';
	    document.forms["formularz_kontaktowy"].temat_wiadomosci.value='';
	    document.forms["formularz_kontaktowy"].tresc_wiadomosci.value='';

	    var cel = document.getElementById('form_mail');
	    cel.innerHTML = 'Wiadomość została wysłana poprawnie.';
	}
}



function validate_email(address)
{
    var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
    if(reg.test(address) == false)
    {
	return false;
    }
    else{return true;}
}

var veriFormObj = readyAJAX();
function veriForm()
{
	if(veriFormObj) 
	{
		var cel = document.getElementById('kontakt_info');
		var red='#800000';
		var podmiot_kontaktowy = document.forms["formularz_kontaktowy"].podmiot_kontaktowy.value;
		var adres_email = document.forms["formularz_kontaktowy"].adres_email.value;
		var nr_telefonu = document.forms["formularz_kontaktowy"].nr_telefonu.value;
		var temat_wiadomosci = document.forms["formularz_kontaktowy"].temat_wiadomosci.value;
		var tresc_wiadomosci = document.forms["formularz_kontaktowy"].tresc_wiadomosci.value;
		var validate=0;

		if(podmiot_kontaktowy==''){$('#podmiot_kontaktowy').css('border-color',red);validate=validate+1; }
		else{$('#podmiot_kontaktowy').css('border-color','#90ac1e');}
		
		if (validate_email(adres_email)==false){$('#adres_email').css('border-color',red);validate=validate+1;}
	    	else{$('#adres_email').css('border-color','#90ac1e');}

		if(nr_telefonu==''){$('#nr_telefonu').css('border-color',red);validate=validate+1;}
		else{$('#nr_telefonu').css('border-color','#90ac1e');}

		if(temat_wiadomosci==''){$('#temat_wiadomosci').css('border-color',red);validate=validate+1;}
		else{$('#temat_wiadomosci').css('border-color','#90ac1e');}
		
		if(tresc_wiadomosci==''){$('#tresc_wiadomosci').css('border-color',red);validate=validate+1;}
		else{$('#tresc_wiadomosci').css('border-color','#90ac1e');}
		
		if(validate==0)
		{
		    cel.innerHTML = '';

		    veriFormObj.open('POST', 'kontakt_info_body.php');
		    veriFormObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded; charset=iso-8859-2;');
		    veriFormObj.send('validate='+validate+'&podmiot_kontaktowy='+podmiot_kontaktowy+'&adres_email='+adres_email+'&nr_telefonu='+nr_telefonu+'&temat_wiadomosci='+temat_wiadomosci+'&tresc_wiadomosci='+tresc_wiadomosci+'');
		    veriFormObj.onreadystatechange = function()
		    {
			if(veriFormObj.readyState == 4)
			{
			    cel.innerHTML = veriFormObj.responseText;
			}
		    }
		    okForm();
		}
		else{
		    cel.innerHTML = 'Proszę o poprawienie pól zaznaczonych czerwonym kolorem.';
		}
	}
}

