Al hacer los dos botones
uno de ellos
<input type="button" name="boton1" onclick="enviar(1);">
y el otro
<input type="button" name="boton2" onclick="enviar(2);">
y luego una función javascript del estilo
Código:
<script type="text/javascript">
<!--//
enviar(i) {
if (i == 1)
document.ELFORMULARIO.action = "DIRECCION 1";
else
document.ELFORMULARIO.action = "DIRECCION2";
document.ELFORMULARIO.submit();
}
//-->
</script>