function envoieself(frm)
{
var target = "self" //Destination des URL: "blank", "top" "self" ou "nom du cadre" 
URL = frm.produits.options[frm.produits.selectedIndex].value;
if (URL == "")
{
	return false;
}

if (frm.produits.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.');
}
}


function envoie_galerie(frm)
{
var target = "blank"

URL = frm.galerie.options[frm.galerie.selectedIndex].value

if (URL == "")
{
	return false;
}

if (frm.galerie.selectedIndex != 0)
{
	if (target == "blank")
	{
		//MM_openBrWindow(''+URL+'','','width=450,height=477')
		mywindow = window.open(''+URL+'','','width=450,height=477');
		//mywindow = window.open('http://www.netgear.fr/config_mimo/2.htm','','width=450,height=477');
	}
	else if (target == "self")
	{
		document.location = URL;
	}
	else
	{
		parent.frames[target].location  = URL;
	}
}
else 
{
	alert('Veuillez faire un choix au menu.');
}
}

