function verifcontact()
	{
	if (document.mailform.Nom.value == "")
		{
		alert("Vous devez fournir votre nom.");
		document.mailform.Nom.focus();
		return false;
		}
	if (document.mailform.Prenom.value == "")
		{
		alert("Vous devez fournir votre prenom.");
		document.mailform.Prenom.focus();
		return false;
		}
	if (document.mailform.Email.value == "")
		{
		alert("Vous devez fournir votre email");
		document.mailform.Email.focus();
		return false;
		}		
	if (document.mailform.Message.value == "")
	{
		alert("Vous devez remplir votre message");
		document.mailform.Message.focus();
		return false;
	}
		
	return true;
	}

function verifsurprise()
	{
	if (document.mailform.Nom.value == "")
		{
		alert("Vous devez fournir votre nom.");
		document.mailform.Nom.focus();
		return false;
		}
	if (document.mailform.contact_sEmail.value == "")
		{
		alert("Vous devez fournir votre email");
		document.mailform.Email.focus();
		return false;
		}		
	if (document.mailform.Tel.value == "")
	{
		alert("Vous devez fournir votre numéro de téléphone");
		document.mailform.Tel.focus();
		return false;
	}
		
	return true;
	}

function Realisations()
{
	window.location.href="/fr/"+ document.getElementById('reacode').options[document.getElementById('reacode').selectedIndex].value +"-nos-realisations.htm";
}


function SoumettreSousCateg(){

	var tri = document.getElementById('asc').options[document.getElementById('asc').selectedIndex].value;
	var sc = document.getElementById('sc').options[document.getElementById('sc').selectedIndex].value;
	window.location.href="/fr/produit-detail.htm?sc="+ sc +','+ tri ;
}



