/******************************************************************************
* xddpFonction.js
*******************************************************************************

*******************************************************************************
*                                                                             *
* Copyright 2008									                          *
*                                                                             *
******************************************************************************/
/* Gestion champ recherche */
function inputFocus(inputValue, inputId){
	if(inputValue == "Recherchez" && inputId == "fulltextSearch"){
		document.getElementById(inputId).value="";
	}else if(inputValue == "" && inputId == "fulltextSearch"){
		document.getElementById(inputId).value="Recherchez";
	}
	if(inputValue == "Login" && inputId == "xlefSoftUserLogin"){
		document.getElementById(inputId).value="";
	}else if(inputValue == "" && inputId == "xlefSoftUserLogin"){
		document.getElementById(inputId).value="Login";
	}
	if(inputValue == "Password" && inputId == "xlefSoftUserPwd"){
		document.getElementById(inputId).value="";
	}else if(inputValue == "" && inputId == "xlefSoftUserPwd"){
		document.getElementById(inputId).value="Password";
	}
}