Hola, magna.
Aquí te dejo otro ejemplo a ver si te sirve:
Código PHP:
<html>
<head>
<script>
function ir() {
numero=document.getElementById('num').value;
if (numero>50)
document.location.href='pagina1.html'
else
document.location.href='pagina2.html'
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<input type="text" id="num">
<input type="button" onClick="ir()">
</body>
</html>
Saludos,