<!--

function show(id) {
    var d = document.getElementById('smenu'+id);

	var m = document.getElementById('menu'+id);

	m.src = "";


	if(navigator.appName == 'Microsoft Internet Explorer'){
	if(!(document.getElementById('menu'+id)).contains(window.event.fromElement)){
	    if (d) {
		d.style.display='block';
	    }
	}
	}
	else{
	if (d) {
	    d.style.display='block';
	}
	}
	var o = document.getElementById('a'+id);
    if (o) {
	if ( o.className != 'a'+id+'sel')
	    o.className = 'a'+id+'on';
    }
    var m = document.getElementById('menu'+id);
}

function hide(id) {
    var d = document.getElementById('smenu'+id);
	if(navigator.appName == 'Microsoft Internet Explorer'){
	    if(!(document.getElementById('menu'+id)).contains(window.event.toElement)){
		if (d) {
		    d.style.display='none';
	    }
	}
	}
	else{
	if (d) {
	    d.style.display='none';
	}
	}
	var o = document.getElementById('a'+id);
    if (o) {
	if ( o.className != 'a'+id+'sel')
	    o.className = 'a'+id+'off';
    }
}

function ouvre_popup(page,largeur,hauteur) {
window.open(page,"nom_popup","menubar=no, status=no, scrollbars=no, menubar=no, width=" + largeur + ", height=" + hauteur);
}

//-->
