// JavaScript Document
function phnum1_chg()
{
	
var phn1=document.costomerfrm.Phone_Number1.value;
	 if(phn1.length>2)
	 {
	//alert(phn1.length);
	document.costomerfrm.Phone_Number2.focus();
	 }

}


function phnum1_chg1()
{
var phn1=document.costomerfrm.Phone_Number2.value;
	 if(phn1.length>2)
	 {
//	alert(phn1.length);
	document.costomerfrm.Phone_Number3.focus();
	 }
}


function phnum1_chg2()
{
var phn1=document.costomerfrm.Phone_Number3.value;

	/* if(phn1.length>3)
	 {
//	alert(phn1.length);
	//document.costomerfrm.Submit.focus();
	 }
	*/


}

