function checkedValue(frmElement,val){

	for(i=0;i<frmElement.length;i++){
		optionValue = String(frmElement[i].value)
		optionValue = optionValue.toLowerCase()
		
		targetValue = String(val)
		targetValue = targetValue.toLowerCase()
		
		if (optionValue == targetValue){
			frmElement.selectedIndex = i		
		}
	}
}

function AddDetailItem(){
	window.DetailsSection.innerHTML = window.DetailsSection.innerHTML + "<table bgcolor='efefef'  border='0' align='center' width='500'><tr><td class='label' align='center'><input type='text' name='PropertyDetails' value='' size='50'></td></tr></table>"
}

function AddIncomeItem(){
	window.IncomeSection.innerHTML = window.IncomeSection.innerHTML + "<table bgcolor='efefef'  border='0' align='center' width='500'><tr><td><input type='text' name='PropertyIncomeName' value='' size='20'></td><td><input type='text' name='PropertyIncomeAmount' value='' size='20'></td></tr></table>"
}


