var Fechas=new Array();
var Cabeceras=new Array();
var Noticias=new Array ();


// FECHAS DE LAS NOTICIAS //
 Fechas[1]=' ';
 Fechas[2]=' ';
 Fechas[3]=' ';
 Fechas[4]=' ';




// CABECERAS DE LAS NOTICIAS //
 Cabeceras[1]=' ';
 Cabeceras[2]=' ';
 Cabeceras[3]=' ';
 Cabeceras[4]=' ';

 


 
// FUNCIONES //
function WriteFecha (NumNoticia){
   document.write (Fechas[NumNoticia])
}
function WriteCabecera (NumNoticia){
   document.write (Cabeceras[NumNoticia])
}
function WriteNoticia (NumNoticia){
   document.write (Noticias[NumNoticia])
}

var marqueecontent='<font face="Verdana" size=2>'+

/////////////
//NOTICIA 1//
/////////////
'<img src="Imagenes/BScroll.gif"> '+Cabeceras[1]+
'<a href="javascript:;" onFocus="if (this.blur) this.blur()" onClick="AbrirNoticia(1)"> [+] </a><font color="#990000" size="2"><br>'+
Fechas[1]+
'</font><p>'+



//NOTICIA 2//
/////////////
'<img src="Imagenes/BScroll.gif"> '+Cabeceras[2]+
'<a href="javascript:;" onFocus="if (this.blur) this.blur()" onClick="AbrirNoticia(2)"> [+] </a><font color="#990000" size="2"><br>'+
Fechas[2]+
'</font><p>'+




/////////////
//NOTICIA 3//
/////////////
'<img src="Imagenes/BScroll.gif"> '+Cabeceras[3]+
'<a href="javascript:;" onFocus="if (this.blur) this.blur()" onClick="AbrirNoticia(3)"> [+] </a><font color="#990000" size="2"><br>'+
Fechas[3]+
'</font><p>'+



/////////////
//NOTICIA 4//
/////////////
'<img src="Imagenes/BScroll.gif"> '+Cabeceras[4]+
'<a href="javascript:;" onFocus="if (this.blur) this.blur()" onClick="AbrirNoticia(4)"> [+] </a><font color="#990000" size="2"><br>'+
Fechas[4]+
'</font><p>'+



//Insertar nuevas noticias antes de esta instruccion//
'</font>'