function whatdo(selection)
{
 	sel = selection.options[selection.selectedIndex].value;
	if(sel == 'en')
		alert('Our web site is only available in French for the moment\nEnglish version will be available soon.');
	else if(sel == 'nl')
			alert('Onze website is tijdelijk uitzonderlijk in het Frans beschikbaar\nNederlands versie binnenkort verkrijgbaar');
		 else if(sel == 'fr')
		 	menuderoulant(sel);
}
function menuderoulant(selection)
{
	window.location= selection + '/';
}

