/*********************************************************************************************************/
/* Detail_Contact.php                                                                                    */
/* Gestion du focus du formulaire contact                                                                */
/*********************************************************************************************************/

function Detail_Contact_setFocus()
{
  document.contact.nom.focus();
    
  if ((document.contact.NoErreur.value == 0)) 
{
    document.contact.nom.focus();
    document.contact.nom.select();
}
  if ((document.contact.NoErreur.value == 1)) 
{
    document.contact.nom.focus();
    document.contact.nom.select();
}
  if ((document.contact.NoErreur.value == 2)) 
{
    document.contact.email.focus();
    document.contact.email.select();
}
  if ((document.contact.NoErreur.value == 3)) 
{
    document.contact.tel.focus();
    document.contact.tel.select();
}
}


