<!--
	function Cargando(W,URL,Variables,Valores){		

		W.document.open("text/html")
		W.document.writeln('<HTML>')
		W.document.writeln('<HEAD>')		
		W.document.writeln('<TITLE>Cargando...</TITLE>')
		W.document.writeln('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">')
		W.document.writeln('</HEAD>')
		W.document.writeln('<BODY BGCOLOR="#FFFFFF" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">')
		W.document.writeln('<TABLE WIDTH="100%" HEIGHT="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">')
		W.document.writeln('<TR>')
		W.document.writeln('<TD ALIGN="CENTER">')

		if(Variables!=null){
			W.document.writeln('<FORM NAME="Formulario" METHOD="POST" ACTION="'+URL+'">')
			for(i=0;i<Variables.length;i++){
				W.document.writeln('<INPUT TYPE="HIDDEN" NAME="'+Variables[i]+'" VALUE="'+Valores[i]+'">')
			}
			W.document.writeln('</FORM>')
		}
		W.document.writeln('<FONT FACE="Verdana, Arial, Helvetica, sans-serif" SIZE="4"> Cargando ')
		W.document.writeln('p&aacute;gina...<BR>')
		W.document.writeln('Por favor, espere.</FONT> </TD>')
		W.document.writeln('</TR>')
		W.document.writeln('</TABLE>')

		W.document.write('<')
		W.document.write('SCRIPT LANGUAJE="JavaScript"')
		W.document.writeln('>')
		W.document.writeln('self.focus()')
		if(Variables!=null){
			W.document.writeln('window.document.Formulario.submit()')
		}else{
			W.document.writeln('window.location.replace("'+URL+'")')
		}
		W.document.write('<')
		W.document.write('/SCRIPT')
		W.document.writeln('>')


		W.document.writeln('</BODY>')
		W.document.writeln('</HTML>')
		W.document.close()

	}
//-->