/***********************************************************************
 * YAV - Yet Another Validator  v1.3.7                                 *
 * Copyright (C) 2005-2006-2007                                        *
 * Author: Federico Crivellaro <f.crivellaro@gmail.com>                *
 * WWW: http://yav.sourceforge.net                                     *
 ***********************************************************************/

// CHANGE THESE VARIABLES FOR YOUR OWN SETUP

// if you want yav to highligh fields with errors
inputhighlight = true;
// classname you want for the error highlighting
inputclasserror = 'frmtextbox';
// classname you want for your fields without highlighting
inputclassnormal = 'frmtextbox';
// classname you want for the inner html highlighting
innererror = 'frmtextbox';
// div name where errors will appear (or where jsVar variable is dinamically defined)
errorsdiv = 'errorsDiv';
// if you want yav to alert you for javascript errors (only for developers)
debugmode = true;
// if you want yav to trim the strings
trimenabled = true;

// change these to set your own decimal separator and your date format
DECIMAL_SEP ='.';
THOUSAND_SEP = ',';
DATE_FORMAT = 'MM/dd/yyyy';

// change these strings for your own translation (do not change {n} values!)
HEADER_MSG = 'Data not valid:';
HEADER_MSG_SP = 'Datos no validos';
FOOTER_MSG = 'Please retry.';
FOOTER_MSG_SP = 'Por favor, intentel


