<!--Validate Fields

function checkFields()
{
	missinginfo = "";
	if (document.theform.name.value == "")
	{
		missinginfo += "\n     -  Name";
	}
	if (document.theform.phone.value == "")
	{
		missinginfo += "\n     -  Telephone";
	}
	if ((document.theform.email.value == "") ||
	(document.theform.email.value.indexOf('@') == -1) ||
	(document.theform.email.value.indexOf('.') == -1))
	{
		missinginfo += "\n     -  E-mail address";
	}
	if (missinginfo != "")
	{
		missinginfo ="_____________________________\n" +
		"For proper submission, we need your:\n" +
		missinginfo + "\n_____________________________" +
		"\nPlease re-enter and submit again!";
		alert(missinginfo);
		return false;
	}
	else return true;
}
//END-->
