//Business Number
function areaCodeNum(codeNum) {
	if (codeNum == 3) {
		document.form.phone.focus();
		//alert(codeNum);
	}
}
function addDash(theValue) {
	if (theValue == 3) {
		var theirNum = document.form.phone.value
		document.form.phone.value = theirNum + '-';
	} else if (theValue < 8) {
		return true;
	} else {
		document.form.phoneExt.focus();
	}
}
//Contact Number
function contAreaCode(codeNum) {
	if (codeNum == 3) {
		document.form.conPhone.focus();
		//alert(codeNum);
	}
}
function conAddDash(theValue) {
	if (theValue == 3) {
		var conNum = document.form.conPhone.value
		document.form.conPhone.value = conNum + '-';
	} else if (theValue < 8) {
		return true;
	} else {
		document.form.conExt.focus();
	}
}
//Fax Number
function areaCodeNum2(codeNum) {
	if (codeNum == 3) {
		document.form.fax.focus();
		//alert(codeNum);
	}
}
function addDash2(theValue) {
	if (theValue == 3) {
		var faxNum = document.form.fax.value
		document.form.fax.value = faxNum + '-';
	} else if (theValue < 8) {
		return true;
	}
}
//Home Phone
function homeAreaCode(codeNum) {
	if (codeNum == 3) {
		document.form.hPhone.focus();
		//alert(codeNum);
	}
}
function homeAddDash(theValue) {
	if (theValue == 3) {
		var homeNum = document.form.hPhone.value
		document.form.hPhone.value = homeNum + '-';
	} else if (theValue < 8) {
		return true;
	}
}
//Mobile Phone
function mobileAreaCode(codeNum) {
	if (codeNum == 3) {
		document.form.mPhone.focus();
		//alert(codeNum);
	}
}
function mobileAddDash(theValue) {
	if (theValue == 3) {
		var mobileNum = document.form.mPhone.value
		document.form.mPhone.value = mobileNum + '-';
	} else if (theValue < 8) {
		return true;
	}
}
//Expert Phone Numbers
function ex1AreaCode(codeNum) {
	if (codeNum == 3) {
		document.form.ex1_Phone.focus();
		//alert(codeNum);
	}
}
function ex1AddDash(theValue) {
	if (theValue == 3) {
		var ex1Num = document.form.ex1_Phone.value
		document.form.ex1_Phone.value = ex1Num + '-';
	} else if (theValue < 8) {
		return true;
	} else {
		document.form.ex1_Ext.focus();
	}
}
function ex2AreaCode(codeNum) {
	if (codeNum == 3) {
		document.form.ex2_Phone.focus();
		//alert(codeNum);
	}
}
function ex2AddDash(theValue) {
	if (theValue == 3) {
		var ex2Num = document.form.ex2_Phone.value
		document.form.ex2_Phone.value = ex2Num + '-';
	} else if (theValue < 8) {
		return true;
	} else {
		document.form.ex2_Ext.focus();
	}
}
function ex3AreaCode(codeNum) {
	if (codeNum == 3) {
		document.form.ex3_Phone.focus();
		//alert(codeNum);
	}
}
function ex3AddDash(theValue) {
	if (theValue == 3) {
		var ex3Num = document.form.ex3_Phone.value
		document.form.ex3_Phone.value = ex3Num + '-';
	} else if (theValue < 8) {
		return true;
	} else {
		document.form.ex3_Ext.focus();
	}
}