// This Section Checks the Required Fields in Contact.php
function ServiceCall()
{
if(document.SC.Name.value == "")
	{
		alert("Please Provide Either\n\n\"Your Name\"\n        or a\n\"Contact Name\"");
		document.SC.Name.focus();
	}
	else
	{
			CheckEmail();
	}
}
function CheckEmail()
{
if(document.SC.Email.value == "")
	{
		alert("Email Address is Required for Your Copy of the Message!");
		document.SC.Email.focus();
	}
	else
	{
			CheckTelephone();
	}
}
function CheckTelephone()
{
if(document.SC.Telephone.value == "")
	{
		alert("We Must Have Your Contact Number to Complete the Service Call?");
		document.SC.Telephone.focus();
	}
	else
	{
			CallType();
	}
}
function CallType()
{
if(document.SC.CallType.value == "")
	{
		alert("You Must Select a Type of Service Call?");
		document.SC.CallType.focus();
	}
	else
	{
			document.SC.action="nixservicecall.php?Send=true";
			document.SC.submit();
	}
}