function ValidateForm()
	{
		var strAlert = new String()

		var From = document.getElementById('ctl00_MainContent_From').value
		var Subject = document.getElementById('ctl00_MainContent_Subject').value
		var Message = document.getElementById('ctl00_MainContent_Message').value



        
		if (From == '')
			{
			strAlert = strAlert + '- From\n';
			}
		
		if (Subject == '')
			{
			strAlert = strAlert + '- Subject\n';
			}
		
		if (Message == '')
			{
			strAlert = strAlert + '- Message\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;
			}
	}

