/***************************************************************************/
// 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 Structure Groupes
function PopStructure(Dossier, id)
{
    var haut=(screen.height-520)/2;
    var gauche=(screen.width-565)/2;
    popstructure=window.open(Dossier+'structures-vacances-fiches-light.php?Id='+id+'','popstructure','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=565, height=520');
    if (popstructure.blur) popstructure.focus();
}

//Popup Inscription
function PopInscription(page, largeur, hauteur)
{
    var haut=(screen.height-(hauteur+70))/2;
    var gauche=(screen.width-largeur)/2;
    popinscription=window.open(page,'popinscription','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width='+largeur+', height='+hauteur);
    if (popinscription.blur) popinscription.focus();
}
