function CargandoOff () {
   Cargando.style.visibility = 'hidden';
   Cargando2.style.visibility = 'hidden';
}
function CargandoOn () {
   Cargando.style.visibility = '';
   Cargando2.style.visibility = '';
}
function CreaCargando () {
	Carg ('white', 'white', '#FDCDB8', 0, 0, 50, 620);
}
function Carg (color1, color2, colorfondo, top, left, height, width) {
	document.write ('<DIV ID="Cargando" STYLE="z-index: 12; FILTER: Shadow(Color=#004000, Direction=135); position: absolute; top: ' + top + 'px; left: ' + left + 'px; height: ' + height + 'px; width: ' + width + 'px; font-family: Arial, sans-serif; font-size: 3em; text-align: center; overflow: visible;"><BR><BR><BR><SPAN STYLE="color: ' + color1 + ';">Cargando&hellip;</SPAN><BR><SPAN STYLE="color: ' + color2 + ';">Espere, por favor.</SPAN><BR><BR><BR></DIV>');
	document.write ('<DIV ID="Cargando2" STYLE="z-index: 11; filter: Glow (Color=' + colorfondo + ', Strength=50); position: absolute; top: ' + top + 'px; left: ' + left + 'px; height: ' + height + 'px; width: ' + width + 'px; font-family: Arial, sans-serif; font-size: 3em; text-align: center; overflow: visible;"><BR><BR><BR><SPAN STYLE="color: ' + colorfondo + ';">Cargando&hellip;</SPAN><BR><SPAN STYLE="color: ' + colorfondo + ';">Espere, por favor.</SPAN><BR><BR><BR></DIV>');
}