function valider()
{
opener.top.parent.location.reload(true);
self.close();
}
function popup(mylink, windowname,longueur, hauteur)
{

var windowprops="width=" + longueur +",height=" + hauteur + ",dependent=yes, scrollbars=yes,resizable=yes" ;

if (! window.focus) return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname,windowprops);
return false;
}
function lesplus(ide1, ide2) 
{
	document.getElementById('choix1').style.display = 'none';
	document.getElementById('choix2').style.display = 'none';
	document.getElementById('choix3').style.display = 'none';		
	
	

	
	document.getElementById(ide1).style.display = 'block';		
	document.getElementById('lien1').className = 'lesplus';
	document.getElementById('lien2').className = 'lesplus';
	document.getElementById('lien3').className = 'lesplus';		
	
	
	
	document.getElementById(ide2).className = 'lesplus_down';		
	
	
}


function lesplus2(id1, id2) 
{
	
	document.getElementById('choix1s').style.display = 'none';
	document.getElementById('choix2s').style.display = 'none';

	
	document.getElementById(id1).style.display = 'block';		
	document.getElementById('lien1s').className = 'chsattente';
	document.getElementById('lien2s').className = 'chsattente';
	
	document.getElementById(id2).className = 'chsactive';		
}


function lesplus22(id1, id2) 
{
	
	document.getElementById('choix1s').style.display = 'none';
	document.getElementById('choix2s').style.display = 'none';
	

	
	document.getElementById(id1).style.display = 'block';		
	document.getElementById('lien1s').className = 'chsattente';
	document.getElementById('lien2s').className = 'chsattente';
	
	
	document.getElementById(id2).className = 'chsactive';		
}





menu_status = new Array();
function showHide(theid,idd){

		theid=theid+idd;
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
    if(!switch_id) return;

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}


