//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 + '-';
	} 
}
