
// ancho
var marqueewidth=290
// alto
var marqueeheight=150
// velocidad
var speed=2
// contenido del scroll
var marqueecontents='<font face="Tahoma" size="3"><b><center><h1>COMUNICACIÓN</h1></center></b><br></font>'+
'<center><img src="../imagenes/escudo_texturas.gif" alt="Escudo" width="60"  align="middle"></center><br><br>'+
//////////////////////////////////////////////////////////////////////////////////////////////////////////
//  Las líneas a continuación serán utilizadas cuando no exista una noticia que se pueda colocar en la  //
//  marquesina, para ello solo basta con borrar los signos // de las lineas inferiores                  //
//////////////////////////////////////////////////////////////////////////////////////////////////////////

//'<center><img src="../imagenes/escudo_texturas.gif" alt="Escudo" width="150"  align="middle"></center><br><br>'+
//'<center><h1><b>HONOR<br><br><br>'+
//'<h1><b>DISCIPLINA<br><br><br>'+
//'<h1><b>LEALTAD</center>'

//////////////////////////////////////////////////////////////////////////////////////////////////////////
//  Aquí se colocará el texto que se desplaza por la marquesina cuando exista, caso contrario se deberá //
//  quitar los comentarios de las líneas del texto alterno (ubicado arriba) que podrá aparecer          //
//////////////////////////////////////////////////////////////////////////////////////////////////////////

//'<center><img src="../imagenes/belen_anim.gif" alt="Eloy Alfaro" width="200"  align="middle"></center>'+
//'<font face="Tahoma" size="2"><center>'+
'<b><center>SE COMUNICA A LOS SRES./SRTAS. CADETES QUE NO ASISTIERON EL DIA LUNES 21 DE JUNIO, DEL '+
'PRESENTE AÑO, DEBERAN PRESENTARSE EN LA INSTITUCIÓN, EL MARTES 06 DE JULIO DEL 2010, A LAS 08H00, A '+
'FIN DE REALIZAR TRABAJOS COMUNITARIOS.<br><br>'+
'<b>NOTA:</b> ANTE EL INCUMPLIMIENTO DE ESTA DISPOSICIÓN, LA INSTITUCIÓN SE RESERVA EL DERECHO DE '+
'ADOPTAR LAS ACCIONES QUE CREYERE CONVENIENTE.<br><br>'+

'ATENTAMENTE,<br>CARLOS RAÚL GARZÓN BÁEZ<br>CRNL. DE E.M.<br>RECTOR<br>'+

'</font>'


if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')
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.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2


