<!--
function Validator(form1)
{
///// GENERAL VALIDATION ( 3 )
	if (form1.service_name.value == "")
	{
		alert("You must enter your Company Name");
		form1.service_name.focus();
		return(false);
	}
if (form1.service_location.value == "")
	{
		alert("You must enter your Printer Location");
		form1.service_location.focus();
		return(false);
	}
if (form1.service_contact.value == "")
	{
		alert("You must enter your Conatact Name");
		form1.service_contact.focus();
		return(false);
	}
///// PHONE VALIDATION

if (form1.phone.value == "")
	{
		alert("You must enter your Phone Number");
		form1.phone.focus();
		return(false);
	}
	var valid = "0123456789-()";
	var hyphencount = 0;
	for (var i=0; i < form1.phone.value.length; i++)
	{
		temp = "" + form1.phone.value.substring(i, i+1);
		if (temp == "-") hyphencount++;
		if (valid.indexOf(temp) == "-1") {
		alert("Invalid characters in your phone number.  Please try again.");
		form1.phone.focus();
		return false;
		}
	}
	
///// EMAIL VALIDATION
  if (form1.email.value == ""){
	alert("Email Address is blank, please Enter an Address !");
	return false;
  }
  if (form1.email.value != "") {
   var emailStr = form1.email.value;
   var emailPat=/^(.+)@(.+)$/;
   var specialChars="\\(\\)<>@,;:\\\\\\\"\\.\\[\\]";
   var validChars="\[^\\s" + specialChars + "\]";

   var firstChars=validChars;
   var quotedUser="(\"[^\"]*\")";
   var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
   var atom="(" + firstChars + validChars + "*" + ")";
   var word="(" + atom + "|" + quotedUser + ")";
   var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
   var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");

/* Begin with the course pattern to simply break up user@domain into
   different pieces that are easy to analyze. */

   var matchArray=emailStr.match(emailPat);
   if (matchArray==null) {
	alert("Email address seems incorrect (check @ and .'s)");
	return false;
   }
   var user=matchArray[1];
   var domain=matchArray[2];

   // See if "user" is valid 
   if (user.match(userPat)==null) {
    // user is not valid
    alert("The email name doesn't seem to be valid.");
    return false;
   }
   /* if the e-mail address is at an IP address (as opposed to a symbolic
   host name) make sure the IP address is valid. */

   var IPArray=domain.match(ipDomainPat);
   if (IPArray!=null) {
    // this is an IP address
	for (var i=1;i<=4;i++) {
	    if (IPArray[i]>255) {
	        alert("Destination IP address is invalid!");
		return false;
	    }
    }
    return true;
   }

   // Domain is symbolic name
   var domainArray=domain.match(domainPat);
   if (domainArray==null) {
	alert("The email domain name doesn't seem to be valid.");
	return false;
   }

   var atomPat=new RegExp(atom,"g");
   var domArr=domain.match(atomPat);
   var len=domArr.length;
   if (domArr[domArr.length-1].length<2 || domArr[domArr.length-1].length>3) {
    // the address must end in a two letter or three letter word.
    alert("The email address must end in a three-letter domain, or two letter country.");
    return false;
   }

   //if (domArr[domArr.length-1].length==2 && len<3) {
   //  var errStr="This email address ends in two characters, which is a country";
   //  errStr+=" code.  Country codes must be preceded by ";
   //  errStr+="a hostname and category (like com, co, pub, pu, etc.)";
   //  alert(errStr);
   //  return false;
   //}

   if (domArr[domArr.length-1].length==3 && len<2) {
     var errStr="This email address is missing a hostname!";
     alert(errStr);
     return false;
   }
   }
if (form1.service_equipment.value == "")
	{
		alert("You must enter your Printer");
		form1.service_equipment.focus();
		return(false);
	}
if (form1.service_description.value == "")
	{
		alert("To better serve your, Please give us a description of the problem");
		form1.service_description.focus();
		return(false);
	}
if (eval(document.form1.service1[0].checked || document.form1.service1[1].checked) == false)
	{
		alert("You must select a service option");
		return(false);
	}   
 return(true);
}

///phone validation
var n;
var p;
var p1;
function ValidatePhone(){
p=p1.value
if(p.length==3){
	//d10=p.indexOf('(')
	pp=p;
	d4=p.indexOf('(')
	d5=p.indexOf(')')
	if(d4==-1){
		pp="("+pp;
	}
	if(d5==-1){
		pp=pp+")";
	}
	//pp="("+pp+")";
	document.form1.phone.value="";
	document.form1.phone.value=pp;
}
if(p.length>3){
	d1=p.indexOf('(')
	d2=p.indexOf(')')
	if (d2==-1){
		l30=p.length;
		p30=p.substring(0,4);
		//alert(p30);
		p30=p30+")"
		p31=p.substring(4,l30);
		pp=p30+p31;
		//alert(p31);
		document.form1.phone.value="";
		document.form1.phone.value=pp;
	}
	}
if(p.length>5){
	p11=p.substring(d1+1,d2);
	if(p11.length>3){
	p12=p11;
	l12=p12.length;
	l15=p.length
	//l12=l12-3
	p13=p11.substring(0,3);
	p14=p11.substring(3,l12);
	p15=p.substring(d2+1,l15);
	document.form1.phone.value="";
	pp="("+p13+")"+p14+p15;
	document.form1.phone.value=pp;
	//obj1.value="";
	//obj1.value=pp;
	}
	l16=p.length;
	p16=p.substring(d2+1,l16);
	l17=p16.length;
	if(l17>3&&p16.indexOf('-')==-1){
		p17=p.substring(d2+1,d2+4);
		p18=p.substring(d2+4,l16);
		p19=p.substring(0,d2+1);
		//alert(p19);
	pp=p19+p17+"-"+p18;
	document.form1.phone.value="";
	document.form1.phone.value=pp;
	//obj1.value="";
	//obj1.value=pp;
	}
}
//}
setTimeout(ValidatePhone,100)
}
function getIt(m){
n=m.name;
//p1=document.forms[0].elements[n]
p1=m
ValidatePhone()
}
function testphone(obj1){
p=obj1.value
//alert(p)
p=p.replace("(","")
p=p.replace(")","")
p=p.replace("-","")
p=p.replace("-","")
//alert(isNaN(p))
if (isNaN(p)==true){
alert("Check phone");
return false;
}
}
//-->