function vider(cible){
	target = document.getElementById(cible);
	if(target.value=="login")
	{
		target.value = "";
	}
	else if(target.value=="password")
	{
		target.value = "";
	}
}