1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| <!-- DEBUT SCRIPT MENU DEROULANT NOUVELLE FENETRE -->
<script LANGUAGE="JavaScript">
var target = "#frame" //Destination des URL: "blank", "top" "self" ou "nom du cadre"
function envoie(frm){
URL = frm.mgros.options[frm.mgros.selectedIndex].value
{
if (target == "blank") mywindow = window.open(''+URL+'');
else if (target == "self") document.location = URL;
else parent.frames[target].location = URL;
}}
//-->
</script>
<form name="Form_1">
<font face="Times New Roman" size="3" color="#000099"></font><select NAME="mgros"
onChange="envoie(this.form)">
<option value="http://styve.nirlot.free.fr/index.jpg" >Home</option>
<option value="http://styve.nirlot.free.fr/portrait/portraits.htm" >Portraits </option>
<option value="http://styve.nirlot.free.fr/mariage/mariage.htm">Mariage </option>
<option value="http://styve.nirlot.free.fr/hotel/hotel.htm">Hotel </option>
<option value="http://styve.nirlot.free.fr/mouvement/mouvement.htm">Mouvement </option>
<option value="http://styve.nirlot.free.fr/bigshot/bigshot.htm">Big Shot </option>
<option value="http://styve.nirlot.free.fr/urbain/urbain.htm">Urbain </option>
<option value="http://styve.nirlot.free.fr/parution/parution.htm">Parution </option>
</select></p>
</form>
<!-- FIN SCRIPT MENU DEROULANT NOUVELLE FENETRE --> |
Partager