var default1 = "Real Hermandad y Cofradía del Señor de la Caridad"; // only shown once at page load
var text1 = "Compás de San Francisco Nº4, 14003_Córdoba";
var text2 = "Real Hermandad y Cofradía del Señor de la Caridad";
var text3 = "contacta@hermandaddelacaridad.org / Tfno: 957 47 67 05";
var changeRate = 3000; // 1000 = 1 segundo
var messageNumber = 0;

function changeStatus() {
  if (messageNumber == 0) {
     window.status=default1;
     document.title=default1;
    }
  else if (messageNumber == 1) {
     window.status=text1;
     document.title=text1;
    }
  else if (messageNumber == 2) {
     window.status=text2;
     document.title=text2;
     }
  else if (messageNumber == 3) {
     window.status=text3;
     document.title=text3;
     messageNumber = 0;
     }

  messageNumber++;
  setTimeout("changeStatus();",changeRate);

}//diferentes textos en la barra de estado

changeStatus(); // leave here to run right away

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

