<!--
function changeBorder(thisElementI)
{
    document.getElementById(thisElement).className = "hilight-border";
}

function normalBorder(thisElement)
{
    document.getElementById(thisElement).className = "clear-border";
}
function changePage(URL)
{
    window.location = URL;
}

function doSetFocusToName()
{
	document.ContactForm.Name.focus();
}

function doChangeToColor(element)
{
    element.style.backgroundColor = "#ccffff";
}

function doChangeToWhite(element)
{
    element.style.backgroundColor = "#ffffff";
}

function doCheckFields()
{
	var Name = document.ContactForm.Name.value;
	if(Name.length == 0)
	{
		alert("Please enter your Name.");
		document.ContactForm.Name.focus();
		return false;
	}

	var EMail = document.ContactForm.EMail.value;
	if(EMail.length == 0)
	{
		alert("Please enter your e-Mail Address.");
		document.ContactForm.EMail.focus();
		return false;
	}

	var Phone = document.ContactForm.Phone.value;
	if(Phone.length == 0)
	{
		alert("Please enter your Phone Number.");
		document.ContactForm.Phone.focus();
		return false;
	}
	
	var IsHowHear4 = document.ContactForm.HowHear4.checked;
	if(IsHowHear4 == true)
	{
	    var Other = document.ContactForm.Other.value;
	    if(Other.length ==0)
	    {
	        alert("If choosing Other, please enter how you heard about 4COM.");
	        document.ContactForm.Other.focus();
	        return false;
	    }
	}
	
	var Comments = document.ContactForm.Comments.value;
	if(Comments.length == 0)
	{
		alert("Please enter your Comments/Questions.");
		document.ContactForm.Comments.focus();
		return false;
	}	
	
	document.ContactForm.action = "Contact-4Com.asp";
	return true;
}

//-->