//Indica aquí, en pixels, el ancho de tu marquesina var marqueewidth=762 //Indica aquí, en pixels, el alto de tu marquesina var marqueeheight=20 //Indica aquí la velocidad de recorrido del texto var speed=4 //Escribe el mensaje que debe aparecer (con sus correspondientes enlaces, si los hay) var marqueecontents='Actualizado por última vez el 15/6/2016. Se publicaron las notas correspondientes al sustitutivo de la Unidad III y las condiciones finales de los estudiantes.' if (document.all) document.write(''+marqueecontents+'') function regenerate(){ window.location.reload() } function regenerate2(){ if (document.layers){ setTimeout("window.onresize=regenerate",450) intializemarquee() } } function intializemarquee(){ document.cmarquee01.document.cmarquee02.document.write(''+marqueecontents+'') document.cmarquee01.document.cmarquee02.document.close() thelength=document.cmarquee01.document.cmarquee02.document.width scrollit() } function scrollit(){ if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){ document.cmarquee01.document.cmarquee02.left-=speed setTimeout("scrollit()",100) } else{ document.cmarquee01.document.cmarquee02.left=marqueewidth scrollit() } } window.onload=regenerate2