Demasiado lío, valida simplemente los campos desde el cliente con JS y deja que el flujo normal del formulario y su respectivo action te dirijan al documento PHP objetivo.
Puedes hacer algo como esto:
HTML:
Código HTML:
<form action = 'alta_cliente.php' method = 'POST' onsubmit = 'return toValidate();'>
<input name="telefonos" type="text" id="telefonos" size="9" maxlength="9" />
<input type = 'submit' value = 'Enviar'/>
</form>
JS:
Código HTML:
function toValidate() {
if(data.length=='0'){
var telefonos = document.getElementsByName('telefonos');
if (confirm("¿Nuevo Cliente?")) {
return true;
} else {
return false;
}
}
Buena suerte.