function menu(it, s) {
	if (s == 1) {
		s = 'visible';
		it.style.cursor = 'pointer';
		it.style.background = '#FFFFFF';
	} else { 
		s = 'hidden';
		it.style.background = '#FFFFFF';
	}
	var sitem = document.getElementById("ss" + it.id);
	if (sitem) {
		sitem.style.visibility = s;
	}
}

function ssmenu(it, s, c) {
	var iitem = document.getElementById(it.id + "_i");
	var titem = document.getElementById(it.id + "_t");
	if (s == 1) {
		s = 'visible';
		it.style.cursor = 'pointer';
		//iitem.style.background = '#9999CC';
		//titem.style.background = '#E8EAF3';
		//titem.style.color = '#9999CC';
	} else { 
		s = 'hidden';
		it.style.background = c;
		iitem.style.background = c;
		//titem.style.background = '#FFFFFF';
		//titem.style.color = '#000000';
	}
}



function popup(i,j,w,h,t,l) {
	fpopup = window.open(i,j, 'width=' +w+ ',height=' +h+ ',top=' +t+ ',left=' +l+ ',scrollbars=yes,status=no,Resizable=yes');
	fpopup.focus();
}

	
function validationcode() 
{ 
       	if(document.formulaire.Contact_Nom.value == "") 
		{ 
        alert ('Veuillez entrer votre Nom'); 
        document.formulaire.Contact_Nom.focus(); 
        return false; 
    	}
				

else {return true;}
}