<!--
//** Seleccionamos el fichero de estilos dependiendo del navegador

if ((navigator.userAgent.indexOf("MSIE")!=-1) && navigator.appVersion.substring(0,1) >= 4)
	document.write("<link rel='stylesheet' type='text/css' href='indexIE.css'>")	;
else
	document.write("<link rel='stylesheet' type='text/css' href='indexNN.css'>")	;
//-->

var txt="HOTEL REY ALFONSO X    HOTEL REY ALFONSO X        ";
function scroll()
{
window.status = txt;
txt=txt.substring(1,txt.length)+txt.charAt(0);
window.setTimeout("scroll()",150);
}

