function ConRange(XValue) {
	objMon12 = document.getElementById("RentalMonthlyRange");
	objMon13 = document.getElementById("RentalDailyRange");
	objCM = document.getElementById("AMonthly")
	objCD = document.getElementById("ADaily")
	X1="MonthlyRange";

	//alert(XValue);
	if (XValue==X1){
	 objMon12.style.display = '';
	 objMon13.style.display = 'none';
	 objCM.style.textDecoration = 'none';
	 objCM.style.color = '#082E73';
	 objCM.style.fontWeight = 'bold';
	 objCD.style.textDecoration = 'underline';
	 objCD.style.color = '#FF0000';
	 objCD.style.fontWeight = 'normal';
	}
	else{
     objMon13.style.display = '';
	 objMon12.style.display = 'none';
	 objCM.style.textDecoration = 'underline';
	 objCM.style.color = '#FF0000';
	 objCM.style.fontWeight = 'normal';
	 objCD.style.textDecoration = 'none';
	 objCD.style.color = '#082E73';
	 objCD.style.fontWeight = 'bold';
	}
}

function ConLocation(XValue,Choice) {
	objMon = document.getElementById('PropertyLocation'+XValue);
	objMon1 = document.getElementById('PropertyOrientation'+XValue);
	objAL = document.getElementById('ALocation'+XValue);
	objAR = document.getElementById('ARegion'+XValue);
	
	if (Choice == "Location"){
	 objMon.style.display = '';
	 objMon1.style.display = 'none';
	 objAL.style.textDecoration = 'none';
	 objAL.style.color = '#082E73';
	 objAL.style.fontWeight = 'bold';
	 objAR.style.textDecoration = 'underline';
	 objAR.style.color = '#FF0000';
	 objAR.style.fontWeight = 'normal';
	 objMon1.selectedIndex=0;
	}
	else{
     objMon1.style.display = '';
	 objMon.style.display = 'none';
	 objAL.style.textDecoration = 'underline';
	 objAL.style.color = '#FF0000';
	 objAL.style.fontWeight = 'normal';
	 objAR.style.textDecoration = 'none';
	 objAR.style.color = '#082E73';
	 objAR.style.fontWeight = 'bold';
	 objMon.selectedIndex=0;
	}
	
}

function ConRangeHome(XValue) {
	objMon12 = document.getElementById("RentalMonthlyRange");
	objMon13 = document.getElementById("RentalDailyRange");
	objCM = document.getElementById("AMonthly")
	objCD = document.getElementById("ADaily")
	X1="MonthlyRange";

	//alert(XValue);
	if (XValue==X1){
	 objMon12.style.display = '';
	 objMon13.style.display = 'none';
	 objCM.style.textDecoration = 'none';
	 objCM.style.color = '#000000';
	 objCM.style.fontWeight = 'normal';
	 objCD.style.textDecoration = 'underline';
	 objCD.style.color = '#999999';
	 objCD.style.fontWeight = 'normal';
	}
	else{
     objMon13.style.display = '';
	 objMon12.style.display = 'none';
	 objCM.style.textDecoration = 'underline';
	 objCM.style.color = '#999999';
	 objCM.style.fontWeight = 'normal';
	 objCD.style.textDecoration = 'none';
	 objCD.style.color = '#000000';
	 objCD.style.fontWeight = 'normal';
	}
}

function ConLocationHome(XValue,Choice) {
	objMon = document.getElementById('PropertyLocation'+XValue);
	objMon1 = document.getElementById('PropertyOrientation'+XValue);
	objAL = document.getElementById('ALocation'+XValue);
	objAR = document.getElementById('ARegion'+XValue);
	
	if (Choice == "Location"){
	 objMon.style.display = '';
	 objMon1.style.display = 'none';
	 objAL.style.textDecoration = 'none';
	 objAL.style.color = '#000000';
	 objAL.style.fontWeight = 'normal';
	 objAR.style.textDecoration = 'underline';
	 objAR.style.color = '#999999';
	 objAR.style.fontWeight = 'normal';
	 objMon1.selectedIndex=0;
	}
	else{
     objMon1.style.display = '';
	 objMon.style.display = 'none';
	 objAL.style.textDecoration = 'underline';
	 objAL.style.color = '#999999';
	 objAL.style.fontWeight = 'normal';
	 objAR.style.textDecoration = 'none';
	 objAR.style.color = '#000000';
	 objAR.style.fontWeight = 'normal';
	 objMon.selectedIndex=0;
	}
	
}