/**********************************************************************
FONCTIONS POUR ENLEVER / REMETTRE LES VALEURES PAR DEFAUT D'UN CHAMP
***********************************************************************/
function input_focus(id,field_value)
	{
	if(document.getElementById(id).value == field_value)
		{ document.getElementById(id).value = ''; }
	}
	
function input_blur(id,field_value)
	{
	if(document.getElementById(id).value == '')
		{ document.getElementById(id).value = field_value; }
	}	
function input_focus_pass(id)
{
	document.getElementById(id).style.background = '';
}
	
function input_blur_pass(id,path)
	{
	if(document.getElementById(id).value == '')
		{ 
			document.getElementById(id).style.background = 'url('+path+'art/bg-mot-de-passe.jpg) no-repeat';
		}
	}
function input_recherche_pass(id,path)
	{
	if(document.getElementById(id).value == '')
		{ 
			document.getElementById(id).style.background = 'url('+path+'art/bg-recherche-rapide.jpg) no-repeat';
		}
	}


function input_focus_cp(id)
{
	document.getElementById(id).style.background = '';
}


function input_cp_pass(id)
{
	if(document.getElementById(id).value == '')
		{ 
			document.getElementById(id).style.background = 'url(../art/bg_input_cp.jpg) no-repeat';
		}	
	
}