/*


Copyright © 2009 Car Techniks. All Rights Reserved
.--------------------------------------------------------------------------------------.
NOTICE SPECIFIC TO STRUCTURES AND IMAGES AVAILABLE ON THIS WEB SITE:
All Materials on http://www.CarTechniks.com is Copyright © YOU DO NOT have permission 
to copy or use any Images, Meta, Html, Scripts or Codes. Any copying or reproduction is 
expressly prohibited by law, and may result in severe civil and criminal penalties. 
Violators will be prosecuted to the maximum extent possible under the law.
'-------------------------------------------------------------------------------------*/

function ValidatePhone(elem) {
	var phonenumber = elem.value;
	if (phonenumber == "") return;
	phonenumber = phonenumber.replace(/\D/g,"");

//	if (phonenumber.length == 7)
//		elem.value = phonenumber.replace(/(\d{3})(\d{4})/,"$1-$2");
	if (phonenumber.length == 10)
		//elem.value = phonenumber.replace(/(\d{3})(\d{3})(\d{4})/,"($1) $2-$3"); // With Bracket
		elem.value = phonenumber.replace(/(\d{3})(\d{3})(\d{4})/,"$1-$2-$3"); // Without
	else {
		alert('The '+elem.name+' Must Be 10 Digit Phone Number');
		elem.select();
		return false;
	}
}

