// JavaScript Document
// ancho
var marqueewidth=165
// alto
var marqueeheight=110
// velocidad
var speed=1
// contenido del scroll
var marqueecontents='22/2/2008 A de I
AdeI and Deloitte Spain Announce Merger (published in Infranews online magazine)
29/1/2008 A de I
A de I asesorará el plan para mejorar la movilidad de Porto Alegre (published in Spanish daily ´La Gaceta de los Negocios´)
24/1/2008 A de I
Spanish Team Awarded Advisory Mandate for Porto Alegre PPP (published in Infranews online magazine)
4/12/2007 A de I
Four Shortlisted for Florida´s I-595 (published in Infranews online magazine)
19/10/2007 A de I
La Junta de Gobierno adjudica el estudio de explotación del tranvía (published in the Heraldo de Aragón)
';
if (document.all)
document.write('')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",100)
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