function checkFields()
{

	var obj = document.frmMethod;
	var bMethodSelected = false;
	for(var i=0; i<obj.length; i++){
		if(obj.elements[i].type=='radio' && obj.elements[i].name=='rMeth'){
			if (obj.elements[i].checked){
				bMethodSelected = true;
			}
		}
	}
if (!bMethodSelected)
	{
	alert("You must select one Method");
	return(false);
	}
if (document.frmMethod.tFName.value == "")
	{
	alert("You must provide your first name");
	document.frmMethod.tFName.focus();
	return(false);
	}
if (document.frmMethod.tLName.value == "")
	{
	alert("You must provide your last name");
	document.frmMethod.tLName.focus();
	return(false);
	}
if (document.frmMethod.tOrg.value == "")
	{
	alert("You must provide your organization");
	document.frmMethod.tOrg.focus();
	return(false);
	}
if (document.frmMethod.tCity.value == "")
	{
	alert("You must provide your city");
	document.frmMethod.tOrg.focus();
	return(false);
	}
if (document.frmMethod.tState.value == "")
	{
	alert("You must provide your state");
	document.frmMethod.tOrg.focus();
	return(false);
	}
if (document.frmMethod.tCntry.value == "")
	{
	alert("You must provide your country");
	document.frmMethod.tCntryfocus();
	return(false);
	}
if (document.frmMethod.tPhone.value == "")
	{
	alert("You must provide your telephone number");
	document.frmMethod.tPhone.focus();
	return(false);
	}
if (document.frmMethod.tEmail.value == "")
	{
	alert("You must provide your email address");
	document.frmMethod.tEmail.focus();
	return(false);
	}
	
// var reg = new RegExp("@");
// see alpha/0_webprod/regexp/
var reg = new RegExp("^([a-zA-Z0-9-._]+)@([a-zA-Z0-9-._]+.)[a-zA-Z]{2,4}$");
if (!reg.test(document.frmMethod.tEmail.value))
	{
	document.frmMethod.tEmail.focus();
	if (confirm("This email does not appear to be correct --> " + document.frmMethod.tEmail.value + ".  If you are certain it is correct, select OK.  If you need to change the address, select CANCEL."))
		{
		return(true);
		}
	return(false);
	}

var reg = new RegExp("^[0-9]{3}-[0-9]{3}-[0-9]{4}$");
if (!reg.test(document.frmMethod.tPhone.value))
	{
	document.frmMethod.tPhone.focus();
	if (confirm("This Phone does not appear to be correct --> " + document.frmMethod.tPhone.value + ".  Please include the Area Code and enter in the format xxx-xxx-xxxx. If you are certain the number is correct, select OK.  If you need to correct the number, select CANCEL."))
		{
		return(true);
		}
	return(false);
	}
return(true);
}	