function ConLocation(XValue) {
	objMon = document.getElementById("PropertyLocation");
	objMon1 = document.getElementById("PropertyOrientation");
	objAL = document.getElementById("ALocation");
	objAR = document.getElementById("ARegion");
	X1="PropertyLocation";

	if (XValue==X1){
	 objMon.style.display = '';
	 objMon1.style.display = 'none';
	 objMon1.selectedIndex=0;
	 objAL.style.textDecoration = 'none';
	 objAL.style.color = '#003366';
	 objAL.style.fontWeight = 'bold';
	 objAR.style.textDecoration = 'underline';
	 objAR.style.color = '#0099FF';
	 objAR.style.fontWeight = 'normal';
	}
	else{
     objMon1.style.display = '';
	 objMon.style.display = 'none';
	 objMon.selectedIndex=0;
	 objAL.style.textDecoration = 'underline';
	 objAL.style.color = '#0099FF';
	 objAL.style.fontWeight = 'normal';
	 objAR.style.textDecoration = 'none';
	 objAR.style.color = '#003366';
	 objAR.style.fontWeight = 'bold';
	}
}
function ConRange(XValue) {
	objMon2 = document.getElementById("RentalMonthlyRange");
	objMon3 = document.getElementById("RentalDailyRange");
	objAM = document.getElementById("AMonthly");
	objAD = document.getElementById("ADaily");
	X1="RentalMonthlyRange";

	if (XValue==X1){
	 objMon2.style.display = '';
	 objMon3.style.display = 'none';
	 objAM.style.textDecoration = 'none';
	 objAM.style.color = '#003366';
	 objAM.style.fontWeight = 'bold';
	 objAD.style.textDecoration = 'underline';
	 objAD.style.color = '#0099FF';
	 objAD.style.fontWeight = 'normal';
	}
	else{
     objMon3.style.display = '';
	 objMon2.style.display = 'none';
	 objAM.style.textDecoration = 'underline';
	 objAM.style.color = '#0099FF';
	 objAM.style.fontWeight = 'normal';
	 objAD.style.textDecoration = 'none';
	 objAD.style.color = '#003366';
	 objAD.style.fontWeight = 'bold';
	}
}
