/*
 PRATIQUE - MENU DE BTFRANCE.COM
*/

function CreeTableau() {
this.length = CreeTableau.arguments.length
for (var i = 0; i < this.length; i++)
this[i+1] = CreeTableau.arguments[i]
}



var LibelleOption = new CreeTableau(
"PRATIQUE",
"",
"Express Pratique",
"Convertisseur",
"Webmail universel",
"T'chat BTFRANCE",
"Méta moteur",
"Géographie",
"Annuaires",
"Services pros",
"Plans itinéraires",
"Cartes virtuelles",
"Cartes kitsches",
"Cadeaux virtuels",
"Recommandeur",
"",
"ACCUEIL",
"MUSIQUE PLUS",
"QUOTIDIEN",
"INFORMATIQUE",
"PRATIQUE",
"DETENTE",
"NEWS",
"",
"LIENS EXPRESS");



var CibleURL = new CreeTableau(
"",
"",
"http://www.btfrance.com/pratique.htm",
"http://www.btfrance.com/monnaies.htm",
"http://www.btfrance.com/webmail.htm",
"http://www.btfrance.com/chat.htm",
"http://www.btfrance.com/moteur.htm",
"http://www.btfrance.com/geographie.htm",
"http://www.btfrance.com/annuaires.htm",
"http://www.btfrance.com/services_1bis.htm",
"http://www.btfrance.com/cartes.htm",
"http://www.btfrance.com/envoicarte.htm",
"http://www.btfrance.com/envoicartekitsch.htm",
"http://www.btfrance.com/envoicadeau.htm",
"http://www.btfrance.com/recommandeur.htm",
"",
"http://www.btfrance.com",
"http://www.btfrance.com/musiqueplus.htm",
"http://www.btfrance.com/jour.htm",
"http://www.btfrance.com/informatique/actu.htm",
"http://www.btfrance.com/pratique.htm",
"http://www.btfrance.com/jeux_gogo.htm",
"http://www.btfrance.com/net2one/a_la_une.htm",
"",
"http://www.btfrance.com/liensexpress.htm");



function AllerA(form) {
i = form.SelectMenu.selectedIndex;
if (i == 0) return;
if (CibleURL[i+1] == "") return;
parent.location.href = CibleURL[i+1];
}
document.write("<FORM>");
document.write("<SELECT NAME='SelectMenu' onChange='AllerA(this.form)'>");
Nombre = LibelleOption.length;
for (var i = 1; i <= Nombre; i++)
document.write("<OPTION>" +LibelleOption[i]);
document.write('</SELECT>');
document.write("</FORM>");

/*
 FIN DU MENU - BTFRANCE.COM
*/
