/* BARRA DE TITULO */
var txt1="    Sistema de Emisoras La Voz de AIIECH / Riobamba-Ecuador     ";
var refresco=null;

function titulo1() {
document.title=txt1;
txt1=txt1.substring(1,txt1.length)+txt1.charAt(0); 
refresco=setTimeout("titulo1()",300);}
titulo1();
/* BARRA DE TITULO */



/* INICIO para el efecto en la barra de estado*/

msg = "Bienvenidos al WebSite del Sistema de Emisoras La Voz de AIIECH 101.7 FM 950 AM";
timeID = 10;
stcnt = 16;
wmsg = new Array(33);
        wmsg[0]=msg;
        blnk = "                                                               ";
        for (i=1; i<32; i++)
        {
                b = blnk.substring(0,i);
                wmsg[i]="";
                for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
        }

function wiper()
{
        if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
        if (stcnt-- < -40) stcnt=31;
        status = str;
        clearTimeout(timeID);
        timeID = setTimeout("wiper()",100);
}

wiper()

/* FIN para el efecto en la barra de estado*/
