Hola:
En el de prever pondría algo así (del tipo button)
onclick="prever(this.form)"
y esta función...
function prever(f) {
faction= f.action;
ftarget = f.target;
f.action ="prever.php";
f.target = "popup";
window.open("", "popup", opciones);
f.submit();
f.target = ftarget;
f.action = faction;
}
Saludos