// JavaScript Document
function CheckFields(field) {

	var IdCountry = document.getElementById('IdCountry').value;
	var OldIdCountry = document.getElementById('OldIdCountry').value;

	var DateStart = document.getElementById('DateStart').value;
	var OldDateStart = document.getElementById('OldDateStart').value;

	var Price = document.getElementById('Price').value;
	var OldPrice = document.getElementById('OldPrice').value;

	var SiteOwer = document.getElementById('SiteOwer').value;
	var OldSiteOwer = document.getElementById('OldSiteOwer').value;

	var TypeAdd = document.getElementById('TypeAdd').value;
	var OldTypeAdd = document.getElementById('OldTypeAdd').value;

	SendForm = false;
		
	// ON VERIFIE SI LE PAYS A CHANGE
	if(field == "IdCountry"){
		
		if(IdCountry != OldIdCountry){
			SendForm = true;
		}
		
	}

	// ON VERIFIE SI LE TYPE DE RECHERCHE A CHANGE
	if(field == "TypeAdd"){
		if(TypeAdd != OldTypeAdd){
			SendForm = true;
		}
		
	}

	// ON VERIFIE SI LA DATE DE DEPART A CHANGE
	if(field == "DateStart"){
		
		if(DateStart != OldDateStart){
			SendForm = true;
		}
		
	}


	if(field == "Price"){
		
		if(Price != OldPrice){
			SendForm = true;
		}
		
	}

	if(field == "SiteOwer"){
		
		if(SiteOwer != OldSiteOwer){
			SendForm = true;
		}
		
	}


	if(SendForm == true) {
			document.getElementById('sqlsearch').value = "yes";
			document.getElementById('forms').submit();

		
	}

}
