function ValidateForm()
	{
		var strAlert = new String()

		var Val = document.getElementById('Val').value
		


		if (Val == '')
			{
			strAlert = strAlert + '- Please enter an address or MLS number.\n';
			}


		if (strAlert.length > 0)
			{
			alert('The following fields are required:\n\n' + strAlert);
			return false;
			}
		else
			{
			//document.getElementById('ctl00_MainContent_cmdSubmit').disabled = 'true';
			return true;
			}
	}

