//VerifyForm messages v1.2 (Nederlands).

//Error message window title.
function VFmessTitle() {return "Foutmelding !";}

//Back text for error messages displayed in the same window.
function VFmessBack() {return "Foutmelding !";}

//Close window text for error messages displayed in a new window.
function VFmessClose() {return "Sluit venster";}

//Error notice heading.
function VFmessErrorsFound() {return "<br>Er zijn fouten gevonden in uw verzending!";}

//Bad Form name message.
function VFmessFormName() {alert("Webdesignfout: De formuliernaam in VerifyForm en de naam in het formulier moeten identiek zijn (zonder spaties)!");}

//Bad Field name message.
function VFmessFieldName(action, i) {alert("'" + action[i] + "' correspondeert niet met de veldnaam in het formulier.");}

//An entry is required message.
function VFmessRequired(action, i){return "U bent vergeten het veld <b>" + action[i+1] + "</b> in te vullen.<br>";}

//Blank form message.
function VFmessBlank() {return "U heeft niets ingevuld. Dit formulier zal niet verstuurd worden.<br>";}

//Please contact us message.
function VFmessContact1() {return "<br><p><b>Keer terug naar het formulier en controleer de velden,</b></p>";}
function VFmessContact2() {return "<p><b>en verstuur het formulier opnieuw.</b></p>";}

//One submission only message.
function VFmessSubmit(){alert("U heeft al op de verstuur-knop geklikt.\nRefresh of Reload deze pagina om opnieuw te versturen.");}

//Field function messages.
//Verify that a second field has also been filled.
function VFmess1(action, secField, i) {return "Het <b>" + action[i+1] + "</b> en <b>" + secField + " </b>veld moeten beiden worden ingevuld.<br>";}
//Verify that this field contains letters only.
function VFmess2(action, i) {return "Alleen letters zijn toegestaan in het veld <b>" + action[i+1] + "</b><br>";}
//Verify that this field contains numbers only.
function VFmess3(action, i) {return "Alleen nummers zijn toegestaan in het veld <b>" + action[i+1] + "</b><br>";}
//Verify that this field contains exact number of characters.
function VFmess4(action, i) {return "The <b>" + action[i+1] + "</b> het veld moet precies " + action[i+3] + " tekens hebben.<br>";}
//Verify maximum number of characters.
function VFmess5(action, i) {return "The <b>" + action[i+1] + "</b> het veld mag niet meer dan " + action[i+3] + " tekens hebben.<br>";}
//Verify maximum number of words.
function VFmess6(action, i) {return "The <b>" + action[i+1] + "</b> het veld mag niet meer dan " + action[i+3] + " woorden hebben.<br>";}
//Verify minimum number of characters.
function VFmess7(action, i) {return "The <b>" + action[i+1] + "</b> het veld moet minstens " + action[i+3] + " tekens hebben.<br>";}
//Verify minimum number of words.
function VFmess8(action, i) {return "The <b>" + action[i+1] + "</b> het veld moet minstens " + action[i+3] + " woorden hebben.<br>";}
//Verify that this field is an exact match of another field (Password).
function VFmess9(action, i) {return "Uw <b>wachtwoord</b> en <b>Bevestiging wachtwoord</b> zijn verschillend. Probeer het opnieuw.<br>";}
//Verify that this field is an exact match in the qualifying value field.
function VFmess10(action, i) {return "De inhoud van het <b>" + action[i+1] + "</b> veld is niet correct.<br>";}
//Verify that the qualifying field is found somewhere in the this entry.
function VFmess11(action, i) {return "De inhoud van het <b>" + action[i+1] + "</b> veld is niet correct.<br>";}
//Verify that a value in the external list is found somewhere in the this entry.
function VFmess12(action, i) {return "De inhoud van het <b>" + action[i+1] + "</b> veld is niet correct.<br>";}
//Error in First AND Last name.
function VFmess14(action, i) {return "Vul uw <b>Voor & Achternaam</b> in het <b>" + action[i+1] + "</b> veld.<br>";}
//Formatting error in E-mail format.
function VFmess15(action, i) {return "Het <b>Adres</b> in het <b>" + action[i+1] + "</b> veld is geen emailadres.<br>";}

//Formatting error in credit card number, phone number, date.
function VFmessFormating(action, i) {return "De inhoud van het <b>" + action[i+1] + "</b>  veld is niet correct ingevuld.<br>";}

//Profanity message.
function VFmessProfan(action, fieldDescr) {return "U mag nergens<font size=+1 color=#990000><b>&nbsp;&nbsp;+&nbsp;&nbsp;$&nbsp;&nbsp;?&nbsp;&nbsp;#&nbsp;&nbsp;%&nbsp;&nbsp;=&nbsp;&nbsp;'&nbsp;&nbsp;</b></font>invullen.<br><br>";}
