/******************************************************************************
* xddpFonction.js
*******************************************************************************

*******************************************************************************
*                                                                             *
* Copyright 2008									                          *
*                                                                             *
******************************************************************************/
/* Gestion champs identification */
$(function() {
 
inputFocus_ident("xlefSoftUserLogin");
inputFocus_ident("xlefSoftUserPwd");
});

function inputFocus_ident(id) {
	var valIni = (jQuery("#"+id).attr("value"));
	jQuery("#"+id).click(function(){
	if(jQuery("#"+id).attr("value") == valIni)	{			
		jQuery("#"+id).attr("value", "") ;
	}
	});
	jQuery("#"+id).blur(function(){
	if(jQuery("#"+id).attr("value") == "")	{
		jQuery("#"+id).attr("value", valIni) ;			
	}
	});	
}

/* 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";
	}
 
}
