﻿	function validateConForm()
	{
		var name = document.Contact.Name;
		var phonenumber = document.Contact.PhoneNumber;
		var bestdaytocall = document.Contact.BestDayToCall;
		var besttimetocall = document.Contact.BestTimeToCall;
				
		if (name.value == "")
		{
			window.alert("You haven't told us what your name is. Please try again.");
			name.focus();
			return false;
		}

		if (phonenumber.value == "")
		{
			window.alert("You haven't told us your telephone number. Please try again.");
			phonenumber.focus();
			return false;
		}

		if (bestdaytocall.value == "--Please Select--")
		{
			window.alert("You haven't told us the best day to call you. Please try again.");
			bestdaytocall.focus();
			return false;
		}

		if (besttimetocall.value == "--Please Select--")
		{
			window.alert("You haven't told us the best time to call you. Please try again.");
			besttimetocall.focus();
			return false;
		}
		return true;
	}
