Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function formatPhone() {
var x = window.Form1.txtPhone.value.length;
if (x == 3) {
window.Form1.txtPhone.value = window.Form1.txtPhone.value + '.';
} else if (x == 7) {
window.Form1.txtPhone.value = window.Form1.txtPhone.value + '.';
} else if (x > 11) {
window.Form1.txtPhone.value = window.Form1.txtPhone.value.substring(0,12);
window.Form1.txtFax.focus();
}
}