//Initialize options for navigator
function initialize()
{

 //set variable to document.form_name.element to save typing :-)
 var d = document.navhistoire.choices;
                           
//define options for selector
d.options.length = 0;

d.options[d.options.length] = new Option("Votre choix", "histoire0.htm")
d.options[d.options.length] = new Option("Histoire commune", "histoire0.htm")
d.options[d.options.length] = new Option("Genval", "histoiregenval.htm")
d.options[d.options.length] = new Option("Rixensart","histoirerix.htm")
d.options[d.options.length] = new Option("Rosières","histoirerosieres.htm")
d.options[d.options.length] = new Option("Fusion des Communes","fusion.htm")
d.options[d.options.length] = new Option("Cartes postales anciennes","postcard1.htm")
d.options[d.options.length] = new Option("Cartes postales anciennes (suite)","postcard2.htm")
d.options[d.options.length] = new Option("Cartes postales anciennes (suite2)","postcard3.htm")
d.options[d.options.length] = new Option("Promenades et photos","promenade.htm")
d.options[d.options.length] = new Option("   Promenade du Lac","promenade.htm")
d.options[d.options.length] = new Option("   Promenade WaWa","promenade1.htm")
d.options[d.options.length] = new Option("   Photos","photopage.htm")
d.options[d.options.length] = new Option("   Photos - suite","photopage1.htm")
d.options[d.options.length] = new Option("Coups de coeur","tirarc.htm")
d.options[d.options.length] = new Option("   Tir à la perche","tirarc.htm")
d.options[d.options.length] = new Option("   Bibliothèques","bibliotheque.htm")
d.options[d.options.length] = new Option("   Tarte Vi Paurin","http://www.rixensart.com/Recettes/recettesd1.htm")
d.options[d.options.length] = new Option("Rixensart.com", "http://www.rixensart.com")
d.options[d.options.length] = new Option("Home", "http://www.redweb.be/rixensart/index.html")
                           
//Blank option for future additions
//d.options[d.options.length] = new Option("","")

//Set the first option as the default display
d.options[0].selected = true;
 }
//Get the chosen page
 function new_url(passed_value)
{
//first check that a place holder has not been chosen
 if (passed_value == "null") return;
 //load the new url into the existing window
// location.href = (passed_value);
                           
//or use this call to load the new url into a new window
window.open(passed_value, "blank")
}