Prueba algo así:
Código:
<html>
<head>
<script language="javaScript">
window.onload = function()
{
setInterval( mueveReloj1, 50);
setInterval( mueveReloj2, 50);
}
function mueveReloj1() { ... }
function mueveReloj2() { ... }
function
</script>
</head>
<body>
<form name="form_reloj2">
<input name="reloj1" type="text" id="reloj1" />
<input name="reloj2" type="text" id="reloj2" />
</form>
</body>
</html>
(El '50' está en milisegundos)