<!-- Begin
var n2;
var p2;
var pc1;
function ValidateFax(){
p2=pc1.value
if(p2.length==3){
	//d10=p2.indexOf('(')
	pp2=p2;
	d4=p2.indexOf('(')
	d5=p2.indexOf(')')
	if(d4==-1){
		pp2="("+pp2;
	}
	if(d5==-1){
		pp2=pp2+")";
	}
	//pp2="("+pp2+")";
	document.Org_ZipCode.Org_Fax.value="";
	document.Org_ZipCode.Org_Fax.value=pp2;
}
if(p2.length>3){
	d1=p2.indexOf('(')
	d2=p2.indexOf(')')
	if (d2==-1){
		l30=p2.length;
		p30=p2.substring(0,4);
		//alert(p30);
		p30=p30+")"
		p31=p2.substring(4,l30);
		pp2=p30+p31;
		//alert(p31);
		document.Org_ZipCode.Org_Fax.value="";
		document.Org_ZipCode.Org_Fax.value=pp2;
	}
	}
if(p2.length>5){
	p11=p2.substring(d1+1,d2);
	if(p11.length>3){
	p12=p11;
	l12=p12.length;
	l15=p2.length
	//l12=l12-3
	p13=p11.substring(0,3);
	p14=p11.substring(3,l12);
	p15=p2.substring(d2+1,l15);
	document.Org_ZipCode.Org_Fax.value="";
	pp2="("+p13+")"+p14+p15;
	document.Org_ZipCode.Org_Fax.value=pp2;
	//obj1.value="";
	//obj1.value=pp2;
	}
	l16=p2.length;
	p16=p2.substring(d2+1,l16);
	l17=p16.length;
	if(l17>3&&p16.indexOf('-')==-1){
		p17=p2.substring(d2+1,d2+4);
		p18=p2.substring(d2+4,l16);
		p19=p2.substring(0,d2+1);
		//alert(p19);
	pp2=p19+p17+"-"+p18;
	document.Org_ZipCode.Org_Fax.value="";
	document.Org_ZipCode.Org_Fax.value=pp2;
	//obj1.value="";
	//obj1.value=pp2;
	}
}
//}
setTimeout(ValidateFax,100)
}
function getIt2(m){
n2=m.name;
//pc1=document.forms[0].elements[n]
pc1=m
ValidateFax()
}
function testfax(obj1){
p2=obj1.value
//alert(p2)
p2=p2.replace("(","")
p2=p2.replace(")","")
p2=p2.replace("-","")
p2=p2.replace("-","")
//alert(isNaN(p2))
if (isNaN(p2)==true){
alert("Check fax");
return false;
}
}
//  End -->
