NoteQuo
Jump to navigation
Jump to search
<SCRIPT LANGUAGE="JavaScript">
<!--
function moverCocheAdelante ()
{
if (coche.style.postleft < 400)
{
coche.style.postleft += 1;
window.setTimeout ("moverCocheAdelante();", 1);
}
function moverCocheAtras ()
}
if (coche.style.posLeft > 0)
}
coche.style.posLeft -= 1;
window.setTimeout ("moverCocheAtras();", 1);
}
}
//-->
</SCRIPT>