// 2004 EINDEN Studio (info@einden.com) Tous droits réservés. /////////////////////////// 
// //////////////////////////////////////////////////////////////////////////////////////

// vérification du formulaire de demande de renseignements///////////////////////////////
// //////////////////////////////////////////////////////////////////////////////////////	
function verification_contact() {  
   if (document.contacts.nom.value.length<1)          { alert("Veuillez saisir votre nom."); return false; }
   if (document.contacts.organisation.value.length<1) { alert("Veuillez saisir votre organisation."); return false; }
   if (document.contacts.telephone.value.length<10)   { alert("Veuillez saisir votre numéro de téléphone."); return false; }
   
   return true;
}

function rechercher_focus() {
	event.srcElement.value="";
	event.srcElement.className="rechercher_on";
}

function popup(image, width, height) {
   var w=(screen.availWidth-width)/2;
   var h=(screen.availHeight-height)/2; 
   ZOOM=window.open('popup.php?image='+image,'ZOOM','width='+width+',height='+height+',toolbar=0,status=0,resizable=0');
   ZOOM.moveTo(w,h);	
}
  