function checkEmailPatient ()
{
	var message="Your information was not submitted because of the following error(s):\n\n"
	var found=0
	
	if (document.emailPatient.hospital.value == "NA")
	{
		if (found==0)
		{found=1
		document.emailPatient.hospital.focus();}
		message=message+"* A Hospital was not selected.\n";
	}

	if (document.emailPatient.senderName.value.length == 0 || document.emailPatient.senderName.value.indexOf(" ") == 0)
	{
		if (found==0)
		{found=1
		document.emailPatient.senderName.focus();}
		message=message+"* Your Name was not entered.\n";
	}

	if (document.emailPatient.senderEmail.value.length == 0 || document.emailPatient.senderEmail.value.indexOf(" ") == 0)
	{
		if (found==0)
		{found=1
		document.emailPatient.senderEmail.focus();}
		message=message+"* Your e-mail address was not entered.\n";
	}
	
	if (document.emailPatient.patientName.value.length == 0 || document.emailPatient.patientName.value.indexOf(" ") == 0)
	{
		if (found==0)
		{found=1
		document.emailPatient.patientName.focus();}
		message=message+"* Patient's name was not entered.\n";
	}
	
	if (document.emailPatient.message.value.length == 0 || document.emailPatient.message.value.indexOf(" ") == 0)
	{
		if (found==0)
		{found=1
		document.emailPatient.message.focus();}
		message=message+"* Message was not entered.\n";
	}
	
	if  (found==1)
	{ alert(message) }
	else
	{ document.emailPatient.submit(); }
}
