//*****************************************************************************
// Archivo   : global_dat.js
// Contenido : Datos COMUNES: Declaraciones y Capturas
// Proyecto  : PATANEGRA Soft Web Utilities
// Observs.  : -
//
// Creada    : Lun-30-Oct-2000 / Federico Murcia (FMD)
// Actualiz. : Lun-31-Dic-2001 / Federico Murcia (FMD)
// Copyright : PATANEGRA Soft - Oct 2000 - Sevilla (SPAIN)
//*****************************************************************************


// ##############################################################################################################################################################
// ##############################################################################################################################################################
// ##############################################################################################################################################################
//
//    Declaración e inicialización de VARIABLES
//
// ##############################################################################################################################################################
// ##############################################################################################################################################################
// ##############################################################################################################################################################


// Caracteres especiales
	sSysTAB       = "\t";
	sSysCR        = "\r";
	sSysLF        = "\n";
	sSysCRLF      = "\r\n";
	sSysFF        = "\f";
	sSysSQUOTE    = "\'";
	sSysDQUOTE    = '\"';
	sSysBACKSLASH = "\\";
	sSysBACKSPACE = "\b";

// De manipulación de fechas
	sSysCnt_AuxDias  = new Array('Domingo','Lunes','Martes','Miércoles','Jueves','Viérnes','Sábado');
	sSysCnt_AuxMeses = new Array('Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre');
	dSysCnt_Date     = new Date();
	sSysCnt_Date     = sSysCnt_AuxDias[dSysCnt_Date.getDay()]           + '-' +
	                   LPad((dSysCnt_Date.getDate() + ''), '0', 2)      + '-' +
							 sSysCnt_AuxMeses[dSysCnt_Date.getMonth()]        + '-' +
							 LPad((dSysCnt_Date.getFullYear() + ''), '0', 2);
	sSysCnt_Time     = LPad((dSysCnt_Date.getHours() + ''), '0', 2)     + ':' +
	                   LPad((dSysCnt_Date.getMinutes() + ''), '0', 2)   + ':' +
							 LPad((dSysCnt_Date.getSeconds() + ''), '0', 2);