function IDSrchSubmit(id) {

	frm = document.getElementById(id);

	if(frm.id_num.value.length == 0 || frm.id_num.value =='Enter Property ID') {

		alert("Please enter an ID Number.");
		frm.id_num.focus();

	} else {
		frm.submit();
	}
	return false;
}
function defTxt(id){
if(id.value=='Enter Property ID'){
id.value='';
}
}
