// JavaScript Document
function CheckFields(field) {

	

	var CpCitys = document.getElementById('CpCity').title.length;
	var City = document.getElementById('CpCity').value;
	var OldValue = document.getElementById('OldCity').value;

	var TypeKot = document.getElementById('TypeKot').value;
	var OldTypeKot = document.getElementById('OldTypeKot').value;

	var PriceRent = document.getElementById('PriceRent').value;
	var OldPriceRent = document.getElementById('OldPriceRent').value;

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



	SendForm = false;
	
	// ON VERIFIE SI LE CODEPOSTAL A CHANGE
	if(field == "CpCity"){
		if(CpCitys  == 1 && City != ''){
				if( 		
				IsNotEmpty('form','CpCity','Code Postal','FR') && 
				OnlyNumber('form','CpCity','fr','Code Postal') &&
				MinChar('form','CpCity','4','fr','Code Postal')
				)
			{
				
				
				if(OldValue != document.getElementById('CpCity').value){
					
					SendForm = true;
					
				}
				
			}
		
		}
		else {
			if(OldValue != document.getElementById('CpCity').value){
				document.getElementById('CpCity').value = 0;
				SendForm = true;
			}
		}
			
	}

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


		// ON VERIFIE SI LA DATE A CHANGE
	if(field == "TypeKot"){
		
		if(TypeKot != OldTypeKot){
			SendForm = true;
		}
		
	}


	if(field == "PriceRent"){
		
		if(PriceRent != OldPriceRent){
			SendForm = true;
		}
		
	}

	if(SendForm == true) {
		if(document.getElementById('CpCity').value == 'Code postal'){
			document.getElementById('CpCity').value = 0;	
		}
			document.getElementById('sqlsearch').value = "yes";

			document.getElementById('forms').submit(); 
			
		
	}

}