He probado cambiando el tipo de button a submit y no funciona.
Ojala alguien sepa cual es el problema
Aca esta el codigo
Código PHP:
<script language="JavaScript">
function entremos()
{
if (window.document.password.rut.value=="")
{
alert("Debe completar el campo 'Rut'");
window.document.password.rut.focus ();
return false;
}
else {
if (Rut(window.document.password.rut.value))
{
window.document.password.submit () ;
return true;
}
}
return false;
}
</script>
<form name="password" id="password" method="post" action="ventas_add1_prueba.php">
<tr>
<td width="50%" align="right">
<input name="rut" type="text" value="" size="14" maxlength="12">
</td>
<td width="40%"><input class="boton10" type="button" name="Submit2" value="Aceptar" onClick="javascript: return entremos();"></td>
</tr>
<tr>
<td height="25"> </td>
<td> </td>
</tr>
</form>