function checkcontact(which) {
 var pass=true
 if (document.images) {
  for (i=0;i<which.length;i++) {
   var tempobj=which.elements[i]
   if ((tempobj.id.substring(0,20)=="nom") && (tempobj.value=='') ||
       (tempobj.id.substring(0,20)=="prenom") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="entreprise") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="adresse") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="code postal") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="ville") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="telephone") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="email") && (tempobj.value=='')) {
    pass=false
    break
   }
  }
 }
 if (!pass) {
  alert("Veuillez saisir tous les champs avec une * et pour passer d'une zone à l'autre, taper la touche TABULATION, merci.")
  return false
 }
 else return true
}

function checkevaluation(which) {
 var pass=true
 if (document.images) {
  for (i=0;i<which.length;i++) {
   var tempobj=which.elements[i]
   if ((tempobj.id.substring(0,20)=="nom") && (tempobj.value=='') ||
       (tempobj.id.substring(0,20)=="prenom") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="entreprise") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="adresse") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="code postal") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="ville") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="telephone") && (tempobj.value=='')	||	
	   (tempobj.id.substring(0,20)=="email") && (tempobj.value=='')) {
    pass=false
    break
   }
  }
 }
 if (!pass) {
  alert("Veuillez saisir tous les champs avec une * et pour passer d'une zone à l'autre, taper la touche TABULATION, merci.")
  return false
 }
 else return true
}