// Service Appointments Hours Validation

function validateStart()
{
	if (document.serviceapptsForm.days.value == 'Select Preferred Day') 
	{
		alert('ERROR! You must select a preferred date from the pull down menu.');
		return false;
	}

	else if (document.serviceapptsForm.hours.value == ' ')
	{
		alert('ERROR! You must select a preferred time from the pull down menu.');
		return false;
	}

	else if (document.serviceapptsForm.alt.value == 'Select Alternate Day')
	{
		alert('ERROR! You must select an alternate date from the pull down menu.');
		return false;
	}
						
	else if (document.serviceapptsForm.althours.value == ' ')
	{
		alert('ERROR! You must select an alternate hour from the pull down menu.');
		return false;
	}
						
	else 
	{
		document.serviceapptsForm.value='submit';
		return true;
		//document.serviceapptsForm.submit();
	}
}