I'd like to create a form... like this :
<form method="POST" action="nittlermenu.php3" name="departform" target="_self">
<p><font size="1" face="Arial"><b>Aeroport de Départ</b></font><br>
<select size="1" name="depart" onchange="JavaScript:Submitdepart()">
<option>Votre Choix</option>
<option selected>Luxembourg</option>
</select><input type="submit" value="GO" name="Submit"></p>
<input type="hidden" name="firstrun" value="0">
<input type="hidden" name="destination" value="MAJORQUE">
<input type="hidden" name="datedepart" value="2000-12-16">
<input type="hidden" name="dateretour" value="2000-12-09">
<input type="hidden" name="hotel" value="Apparthotel Dunas">
<input type="hidden" name="ville" value="Cala Millor">
<input type="hidden" name="reduction" value="30%">
<input type="hidden" name="prix" value="11970">
<input type="hidden" name="wheresearch" value="AEROPORT_DEPART">
</form>
But I'd Like to create 2 action when submitted !!!!
The first One in the same frame, and a second one in the main frame...
How could I Implemente this ???