//---------------------------------Button focus------------------------------------


/*  
*  validatie van offerte formulier
*  gebruikt file:  gen_validation.js
*/ 

var arrFormValidation=
[
[//CONTACTPERSOON
["maxlen=38",""],
["minlen=1","Please enter your contact name!"],
["regexp=^[A-Za-z](\s*)", "Do not use digits or special characters in contact name"]
],
[//ORGANISATIE
["maxlen=38", ""]
],
[//email
["email","Invalid eMail address!"]
],
[//COMMENT
["required", "Please add comment or inquiry before submitting this form!"],
["maxlen=500", "max 500 characters allowed for text field"]
]
];


