 function ouvre(val) {
 	window.open(val,'','width=550,height=550,resizable=yes,scrollbars=yes');
} 

function efface()
	{
	if (document.foo.domaine && document.foo.domaine.selectedIndex != 0)
		{
		document.foo.domaine.selectedIndex = 0;
		}
	if (document.foo.sousdomaine && document.foo.sousdomaine.selectedIndex != 0)
		{
		document.foo.sousdomaine.selectedIndex = 0;
		}
	if (document.foo.region && document.foo.region.selectedIndex != 0)
		{
		document.foo.region.selectedIndex = 0;
		}
	if (document.foo.departement && document.foo.departement.selectedIndex != 0)
		{
		document.foo.departement.selectedIndex = 0;
		}
	if (document.foo.apprentissage && document.foo.apprentissage.selectedIndex != 0)
		{
		document.foo.apprentissage.selectedIndex = 0;
		}
	if (document.foo.validation && document.foo.validation.selectedIndex != 0)
		{
		document.foo.validation.selectedIndex = 0;
		}
	}

function valid()
	{	
	if (document.foo.validation)
		{
		if (document.foo.validation.options[document.foo.validation.selectedIndex].value)
			{
			if (document.foo.region.options[document.foo.region.selectedIndex].value || document.foo.departement.options[document.foo.departement.selectedIndex].value)
				{
				document.foo.action="1-19125-Formation-initiale-Recherche.php";
				document.foo.submit();
				}
			else
				{
				alert("Choisissez une région ou un département");
				}
			}
		else
			{
			alert("Choisissez une validation");
			}
		}
	else
		{
		if (document.foo.domaine.options[document.foo.domaine.selectedIndex].value&&(document.foo.region.options[document.foo.region.selectedIndex].value || document.foo.departement.options[document.foo.departement.selectedIndex].value))
			{
			document.foo.action="1-19125-Formation-initiale-Recherche.php";
			document.foo.submit();
			}
		else if (document.foo.sousdomaine.options[document.foo.sousdomaine.selectedIndex].value&&(document.foo.region.options[document.foo.region.selectedIndex].value || document.foo.departement.options[document.foo.departement.selectedIndex].value))
			{
			document.foo.action="1-19126-Formation-initiale-Recherche.php";
			document.foo.submit();
			}
		else if ((document.foo.domaine.options[document.foo.domaine.selectedIndex].value)||(document.foo.sousdomaine.options[document.foo.sousdomaine.selectedIndex].value))
			{
			alert("Choisissez une région ou un département");
			}
		else if (document.foo.region.options[document.foo.region.selectedIndex].value || document.foo.departement.options[document.foo.departement.selectedIndex].value)
			{
			alert("Choisissez un domaine ou un sous-domaine");
			}
		else
			{
			alert("Choisissez un domaine ou un sous-domaine et une région ou un département");
			}
		}
	}

