/*
 DETENTE - 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(
"DETENTE",
"",
"Ecoute radios",
"Jeux choisis",
"Jeux à gogo",
"Pubs des Nuls",
"Vidéos",
"Biographie fun",
"English lesson",
"",
"ACCUEIL",
"MUSIQUE PLUS",
"QUOTIDIEN",
"INFORMATIQUE",
"PRATIQUE",
"DETENTE",
"NEWS",
"",
"LIENS EXPRESS");



var CibleURL = new CreeTableau(
"",
"",
"http://www.btfrance.com/radios.htm",
"http://www.btfrance.com/jeux.htm",
"http://www.btfrance.com/jeux_gogo.htm",
"http://www.btfrance.com/humour_nuls.htm",
"http://www.btfrance.com/videos.htm",
"http://www.btfrance.com/biographiefun.htm",
"http://www.btfrance.com/leconanglais.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
*/
