myMsg = "               AEG Power Solutions Ibérica        - formerly Saft Power Systems,  Saft Nife -               comercial.iberica@aegps.com          servicios.iberica@aegps.com          -          nombre.apellido@aegps.com               "
i = 0
  	
function scrollMsg() {
	history.go(1)
  window.status = myMsg.substring(i,myMsg.length) + myMsg.substring(0,i)
	if (i < myMsg.length) {
	  i++
		}
	else {
		i = 0
		}
	setTimeout("scrollMsg()",300)
	}

flashfix = function() {
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
} 

if (window.attachEvent)
window.attachEvent("onload", flashfix)
else
window.onload=flashfix;
	
