/*** FONCTION DE MODIFICATION D'UNE IMAGE DE FOND ***/
/////////////////////////////////////////////////////
///
///sImg --> Lien vers l'image de fond (obligatoire)
///nColor --> Couleur css du "background" de l'image (de type #000000) (facultatif)
///nClassElement --> Class (ou Id) de l'element ou doit s'effectuer le changement de fond (obligatoire)
/// sParam1, sParam2, sParam3 --> parametres facultatifs qui permettent d'appeler une seconde fois la fonction
/// sParam1 équivaut à sImg (facultatif)
/// sParam2 équivaut à nColor (facultatif)
/// sParam3 équivaut à nClassElement (facultatif)
///
/////////////////////////////////////////////////////
function select_background(sImg, nColor, nClassElement, sParam1, sParam2, sParam3)
				{		
				if (nColor!="") {
				document.getElementById('' + nClassElement + '').style.backgroundColor = nColor;
						}
				document.getElementById('' + nClassElement + '').style.backgroundImage = 'url(' + sImg + ')';
				
				if (sParam1!="") {
					select_background(sParam1, sParam2, sParam3, '', '', '');	
					
					}
				
				}
				
