
var ArrFech = new Array()
var ArrText = new Array()
var ArrLink = new Array()

var ContArr = 4

ArrFech[0]  = "22 de Septiembre, 2009"
ArrText[0]  = "S.A.R. el Pr&iacute;ncipe de Asturias en el stand de <b>Contein XXI</b> en el SIMO ..."
ArrLink[0]  = "index_20090922.html"

ArrFech[1]  = "21 de Septiembre, 2009"
ArrText[1]  = "Durante los pr&oacute;ximos d&iacute;as, tendr&aacute; lugar una nueva edici&oacute;n de <b>SIMO network</b> ..."
ArrLink[1]  = "index_20090921.html"

ArrFech[2]  = "12 de Mayo, 2009"
ArrText[2]  = "<b>CONTEIN XXI</b> ha cambiado su ubicaci&oacute;n dentro del <b>Parque Cient&iacute;fico y Tecnol&oacute;gico de Gij&oacute;n</b> ..."
ArrLink[2]  = "index_20090512.html"

ArrFech[3]  = "5 de Mayo, 2009"
ArrText[3]  = "<b>CONTEIN XXI</b> estar&aacute; presente en el foro <b>inegozi@ 2009</b> que tendr&aacute; lugar en Gij&oacute;n..."
ArrLink[3]  = "index_20090505.html"

for (i=0; i<ContArr;i++)
{
	document.write("<table width='185' border=0 cellpadding=0 cellspacing=0>")
	document.write("<tr height='30'><td>")
	document.write("<img src='img/arrow_red.jpg' align='absmiddle' style='margin-top:4px' alt='")
	document.write(ArrFech[i])
	document.write("'>&nbsp;")
	document.write("<font class='txtRojo'><b>")
  	document.write(ArrFech[i])
  	document.write("</b></font>")
  	document.write("</td></tr>")
  	document.write("<tr><td><p align='justify'")
  	document.write("<font class='txtContenido'>")
	document.write(ArrText[i])
	document.write("</font></p>")
	document.write("</td></tr>")
	document.write("<tr height='23'><td>")
	document.write("<a href='")
	document.write(ArrLink[i])
	document.write("' class='linkGrisUnderline'><b>leer más</b></a></td></tr></table>")
	if (i<ContArr-1)
	{
		document.write("<img src='img/linea_2.jpg' width='185' style='margin-top:16px;margin-bottom:13px'>")
	}
}