/* This code is Copyright (c) 1996 Nick Heinle and Athenia Associates,
* all rights reserved. In order to receive the right to license this
* code for use on your site the original code must be copied from the
* Web site webreference.com/javascript/. License is granted to user to
* reuse this code on their own Web site if and only if this entire copyright
* notice is included. Code written by Nick Heinle of webreference.com.
 */

function MakeArray()
{
this.length = MakeArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i+1] = MakeArray.arguments[i]
}

var siteopt = new MakeArray("Tous les sites","Viv&eacute;o","Blog Michel Bontemps","Clinic Alternativ","Elixir du Su&eacute;dois", "Plaza Sport" , "Proscience" , "RoyaleBee" ,  "Oelessence" );

var url = new MakeArray("","http://viveoeurope.com","http://blog.michelbontemps.com","http://www.clinicalternativ.com","http://www.elixirdusuedois.com","http://www.plazasport.com" ,"http://www.proscience.ch/", "http://royalebee.com" , "http://www.oelessence.com");

function jumpPage(form) {
i = form.SelectMenu.selectedIndex;
if (i == 0) return;
window.location.href = url[i+1];
}