function formatPhone(phone) {
	phonestr = phone.value;
	var shortPhone = "";
	for (i = 0; i < phonestr.length; i++) {
		var c = String(phonestr.charAt(i));
		if ((c >= "0") & (c <= "9")) {
			shortPhone += c;
		}
	}
	if (shortPhone.length != 10)
	{
		return false;
	}
	else
	{
		newPhone = '(' + shortPhone.substring(0, 3) + ') ' + shortPhone.substring(3, 6) + '-' + shortPhone.substring(6, 10);
	}
	phone.value = newPhone;
	return true;
}
