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

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

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

if (frm.pays.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.');
}
}