// JavaScript Document
function SearchBoxClear(Obj, TxtVal, FocusTrue){
	var strVal = Obj.value;
	if (FocusTrue == true && strVal == TxtVal){
			Obj.style.color = "#000000";
			Obj.value		= "";
	}else if(FocusTrue == false && Obj.value == ""){
			Obj.style.color = "#C0C0C0";
			Obj.value 		= TxtVal;
	}

}
//-----------------------------------------------------

function GetPostcode(oSrc){
	
	var Postcode = oSrc.value;

	var HouseNum = document.getElementById('HouseNum').value;
	if (Postcode != ""){

	document.getElementById('pclookup').src="pclookupjs.asp?PCD=" + Postcode + "&NUM=" + HouseNum.replace(/"/g,"'");	
	
	}
	return false;
}


function ShowOtherBox(oSrc){
	var SeleOption	= oSrc.value;
	if (SeleOption == "Other"){
		document.getElementById("OtherTxt").style.display = "block";	
	}else{
		document.getElementById("OtherTxt").style.display = "none";
	}
}

