function couleurc(obj) 
{
     obj.style.backgroundColor = "#FFFFFF";
}

<!-- 
function verifc() 
{ 

var msg = "";

	if (document.ident.identifiant.value.length <= 2 )
	{
			msg += "Identifiant 3 caractères minimum\n";
			document.ident.identifiant.style.backgroundColor = "#F3C200";
	}
	if (document.ident.identifiant.value == ''|| document.ident.recherche.value == ' '|| document.ident.recherche.value == '  ' || document.ident.identifiant.value == '   ' || document.ident.recherche.value == '    ')
	{
			msg += "acune saisie\n";
			document.ident.identifiant.style.backgroundColor = "#F3C200";
	}
	
	if (document.ident.password.value.length <= 2 )
	{
			msg += "Mot de passe 3 caractères minimum\n";
			document.ident.password.style.backgroundColor = "#F3C200";
	}
	if (document.ident.password.value == ''|| document.ident.recherche.value == ' '|| document.ident.recherche.value == '  ' || document.ident.password.value == '   ' || document.ident.recherche.value == '    ')
	{
			msg += "acune saisie\n";
			document.ident.password.style.backgroundColor = "#F3C200";
	}



//Si aucun message d'alerte a été initialisé on retourne TRUE
	if (msg == "") return(true);
 
//Si un message d'alerte a été initialisé on lance l'alerte
	else
	{
		alert(msg);
		return(false);
	}
}

function validPass(strSearch)
{
	var f = document.getElementById('ident');
	
	if ((strSearch == '' || strSearch == 'Identifiant...') || (strSearch == '' || strSearch == 'Pass...'))
	{
    alert('Pour vous identifier vous devez remplir au préalable les deux le champ "Identifiant" et "Mots de passe"');
    f.recherche.focus();
	}
	else
	{
		 f.submit();
	}
}
function  changePass()
{

  if (document.getElementById('identifiant').value== 'Identifiant...')
  {
    document.getElementById('identifiant').value= ''
  }
  if (document.getElementById('password').value== 'Pass...')
  {
    document.getElementById('password').value= ''
  }
}

//-->