Ya te comente, puedes hacer algo así, por decir en tu respuesta PHP:
Código PHP:
echo "OK|" . $html:
Luego en tu Javascript
:
Código:
var respuesta = ajax.responseText.split( "|" );
if( respuesta[0] == "OK" ) {
window.location = "turedireccion.php";
} else {
// tu proceso AJAX normal para validar.
}
Saludos.