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 = '#999999';
	 objAL.style.fontWeight = 'bold';
	 objAR.style.textDecoration = 'underline';
	 objAR.style.color = '#C3C3C3';
	 objAR.style.fontWeight = 'normal';
	 objMon1.selectedIndex=0;
	}
	else{
     objMon1.style.display = '';
	 objMon.style.display = 'none';
	 objAL.style.textDecoration = 'underline';
	 objAL.style.color = '#C3C3C3';
	 objAL.style.fontWeight = 'normal';
	 objAR.style.textDecoration = 'none';
	 objAR.style.color = '#999999';
	 objAR.style.fontWeight = 'bold';
	 objMon.selectedIndex=0;
	}
	
}

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 = '#666666';
	 objAL.style.fontWeight = 'normal';
	 objAR.style.textDecoration = 'underline';
	 objAR.style.color = '#999999';
	 objAR.style.fontWeight = 'bold';
	 objMon1.selectedIndex=0;
	}
	else{
     objMon1.style.display = '';
	 objMon.style.display = 'none';
	 objAL.style.textDecoration = 'underline';
	 objAL.style.color = '#999999';
	 objAL.style.fontWeight = 'bold';
	 objAR.style.textDecoration = 'none';
	 objAR.style.color = '#666666';
	 objAR.style.fontWeight = 'normal';
	 objMon.selectedIndex=0;
	}
	
}
