﻿function focusPhone(){
	if (document.getElementById("phone_area").value.length < 3){
		document.getElementById("phone_area").focus();
		return;
	};
	if (document.getElementById("phone_prefix").value.length < 3){
		document.getElementById("phone_prefix").focus();
		return;
	};
	if (document.getElementById("phone_suffix").value.length < 4){
		document.getElementById("phone_suffix").focus();
		return;
	};
	document.getElementById("phone_area").focus();
	document.getElementById("phone_area").select();
};
