var aa = String.fromCharCode(225);
var ea = String.fromCharCode(233);
var ia = String.fromCharCode(237);
var oa = String.fromCharCode(243);
var ua = String.fromCharCode(250);

var Aa = String.fromCharCode(193);
var Ea = String.fromCharCode(201);
var Ia = String.fromCharCode(205);
var Oa = String.fromCharCode(211);
var Ua = String.fromCharCode(218);

var nt = String.fromCharCode(241);
var Nt = String.fromCharCode(209);

var uu = String.fromCharCode(252);
var Uu = String.fromCharCode(220);

var fv = new Array()

/****************************************************
*	Constants. Do not edit
****************************************************/

//	Global used for flagging the validateBlank() function within most other validation functions
fv['bok'] = false;

//	Global used for class switching.
fv['revertClass'] = '';

//	Array for error totalling while in group error mode
var errorData = new Array();

//	Placeholder for Group Error boolean
fv['groupError'] = 0;

//	Placeholder for number of group error alerts
fv['groupErrors'] = 0;

/****************************************************
*	Globals.  Modify these to suit your setup
****************************************************/

//	Attribute used for fValidate Validator codes
fv['code'] = 'validacion';

//	Attribute used for custom error messages (override built-in error messages)
fv['emsg'] = 'mensaje';

//	Attribute used for pattern with custom validator type
fv['pattern'] = 'pattern';

//	Change this to the classname you want for the error highlighting
fv['errorClass'] = 'errHilite';

//	If the bConfirm flag is set to true, the users will be prompted with CONFIRM box with this message
fv['confirmMsg'] = 'Su informaci'+oa+'n est'+aa+' por enviarse.\nD'+ea+' click en\'Ok\' para continuar o \'Cancel\' para abortar.';

//	If user cancels CONFIRM, then this message will be alerted.  If you don't want this alert to show, then
//	empty the variable (  fv['confirmAbortMsg'] = '';  )
fv['confirmAbortMsg'] = 'El envio del formato fue cancelado.  Los datos no se han enviado.';

//	Enter the name/id of your form's submit button here (works with type=image too)
fv['submitButton'] = 'enviar_btn';

//	Enter the name/id of your form's reset button here (works with type=image too)
fv['resetButton'] = 'reset_btn';

//	Enter the DOM name of the SELECT object here. Make sure you pay attention to the values (CC Types)
//	used in the case statement for the function validateCC()
fv['ccTypeObj'] = '';

//	Number of group error mode alerts before switching to normal error mode
fv['switchToEbyE'] = 3;

//	EOF
