/***************************************************************************/
// Gestion de l'affichage des menus dynamiques
/***************************************************************************/

function montre(id) 
{
	if (document.getElementById) document.getElementById(id).style.display="block";
	else if (document.all) document.all[id].style.display="block";
	else if (document.layers) document.layers[id].display="block";
}
		
function cache(id) 
{
	if (document.getElementById) document.getElementById(id).style.display="none";
	else if (document.all) document.all[id].style.display="none";
	else if (document.layers) document.layers[id].display="none";
}


//Popup Document Associé
function PopDocumentAssoc(id_article)
{
	var haut=(screen.height-400)/2;
	var gauche=(screen.width-770)/2;
	popdocumentassoc=window.open('pop_documentassoc.php?Id='+id_article,'popdocumentassoc','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=810, height=400');
	if (popdocumentassoc.blur) popdocumentassoc.focus();
}
