function envoie(frm)
{
var target = "blank" //Destination des URL: "blank", "top" "self" ou "nom du cadre" 

URL = frm.galerie.options[frm.galerie.selectedIndex].value

if (URL == "")
{
	return false;
}

if (frm.galerie.selectedIndex != 0)
{
	if (target == "blank")
	{
		mywindow = window.open(''+URL+'');
	}
	else if (target == "self")
	{
		document.location = URL;
	}
	else
	{
		parent.frames[target].location  = URL;
	}
}
else 
{
	alert('Veuillez faire un choix au menu.');
}
}
