<!-- 

var cuenta = 0
var texto = "                            GALM Rent a car Bucharest - Romania"
function scrolltexto() {
window.status = texto.substring(cuenta, texto.length) + texto.substring(0, cuenta)
if (cuenta < texto.length) {
cuenta ++
} else {
cuenta = 0
}
setTimeout("scrolltexto()", 150)
}
scrolltexto()
//-->
