function Form_HideShowDiv (id_hideshow) {
	
    var baliseHideShow = document.getElementById(id_hideshow);
   
    if ((baliseHideShow.style.display == "none") && (document.getElementById("page").style.visibility=="hidden")) {
    	baliseHideShow.style.display = "block";
    	document.getElementById('page').style.visibility='visible';
    } else {
    	baliseHideShow.style.display = "none";
    	document.getElementById('page').style.visibility='hidden';
    }
//    alert('test : '+document.getElementById('page').style.visibility);

}



function afficheMap(divId)
{
//	document.getElementById('page').style.visibility='visible';
	document.formRecupProductId.productIdSkuJS.value='';
	Form_HideShowDiv(divId);
}


function afficheListMag(valeur)
{	
	document.getElementById('page').style.visibility='visible';
	document.formRecupProductId.productIdSkuJS.value='';
	Form_HideShowDiv('carteFooter');
	appelAjaxListMagasin(valeur);
}

