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;
		}		
	return true;
	}

function verifreg()
	{
	if (document.regform.username.value == "")
		{
		alert("Vous devez fournir un nom d'utilisateur.");
		document.regform.username.focus();
		return false;
		}
	if (document.regform.contactnom.value == "")
		{
		alert("Vous devez fournir votre nom.");
		document.regform.contactnom.focus();
		return false;
		}
	if (document.regform.contactprenom.value == "")
		{
		alert("Vous devez fournir votre prénom.");
		document.regform.contactprenom.focus();
		return false;
		}
	if (document.regform.contactemail.value == "")
		{
		alert("Vous devez fournir votre email.");
		document.regform.contactemail.focus();
		return false;
		}
	if (document.regform.contactadresse.value == "")
		{
		alert("Vous devez fournir votre adresse.");
		document.regform.contactadresse.focus();
		return false;
		}
	if (document.regform.contactcp.value == "")
		{
		alert("Vous devez fournir votre code postal.");
		document.regform.contactcp.focus();
		return false;
		}
	if (document.regform.contactville.value == "")
		{
		alert("Vous devez fournir votre ville.");
		document.regform.contactville.focus();
		return false;
		}
	return true;
	}

function verifexpert(){


	if (document.visiteform.g_choix[0].checked && document.visiteform.g_cp.value=="")
		{
		alert("Vous devez fournir un code postal.");
		document.visiteform.g_cp.focus();
		return false;
		}

	return true;
}

