function ventana(theURL,winName,ancho,alto,features) { 
	var winl = (screen.width - ancho) / 2;
	var wint = (screen.height - alto) / 2;
	var paramet=features+',top='+wint+',left='+winl+',width='+ancho+',height='+alto;
	var splashWin=window.open(theURL,winName,paramet);
    splashWin.focus();
}
// ---
function versionflash() {
	window.open("versionflash.asp","ActualizaciónDeFlash","width=450,height=165")
}
// Invierte una cadena
function voltear(texto) {
	var textoSalida = ""
	var largo = texto.length
	for(n=0;n<largo;n++) {
		textoSalida = texto.charAt(n) + textoSalida
	}
	return textoSalida
}

