﻿// JScript 文件

var config={
    address:'Address ',
    tel:'Telephone ',
    //site:'site ',
    person:'Person ',
    //mobile:'mobile ',
    //faxes:'faxes ',
    email:'Email '
};
var arr = new Array();
window.onload=function(e){
    arr.push(new Validator('address',config.address,true));
    arr.push(new Validator('tel',config.tel,true));
    arr.push(new Validator('email',config.email,true));
    //arr.push(new Validator('mobile',config.mobile,true));
    //arr.push(new Validator('faxes',config.faxes,true));
    arr.push(new Validator('person',config.person,true));
        //arr.push(new Validator('site',config.site,true));
};
var check=function(e){
    return checkArray(arr);
};
