// fonctions pour afficher/cacher un element par son ID

function show_hide(objId)  {
	
	if (document.getElementById(objId).style.display == "block") {
      	document.getElementById(objId).style.display = "none";
	} 
	else {
		document.getElementById(objId).style.display = "block";
	}
 }
 
 function show_menu(objId)  {
		document.getElementById(objId).style.display = "block";
 }
 
 function hide_menu(objId)  {
		//alert(objId);
      	document.getElementById(objId).style.display = "none";
 }
 
function Print() {
		window.print();  
}

function newsletter(url, email){
		window.location = url + email
		var email = document.getElementById('m_txtEmail');
		var emailInitValue = document.getElementById('m_emailInitialValue');
		if( email != null && emailInitValue != null )
			email.value = emailInitValue.value;
}
