// JavaScript Document
//alert(screen.availHeight);
function montre(id, rubrique)
{
	var a = document.getElementById('smenu'+id);
	var b = document.getElementById('menu'+id);
	//alert (rubrique);
		for (var i = 1; i<=7; i++) {
			if (document.getElementById('smenu'+i)) {
				document.getElementById('smenu'+i).style.display='none';
				if(i!=rubrique) {document.getElementById('menu'+i).className='';}
			}
		}
	if (a) {
		a.style.display = 'block';
		b.className = 'active';
	}
}

function popup(page) {
	// ouvre une fenetre sans barre d'etat, ni d'ascenceur
	w = 670;
	h	= 600;
	var top=(screen.height-h)/2;
	var left=(screen.width-w)/2;
	myPopup = window.open(page,'popup','top='+top+', left='+left+', width='+w+', height='+h+', scrollbars=yes');	
	myPopup.focus();
}

// liste déroulante : ouverture popup
function open_fiche(obj)
{
	//var serveur = 'http://www.longue-vue.com/IXIS_FR/';
	var index = obj.selectedIndex;                
	if( index > 0 ) {            
		window.open(obj.options[index].value,'nom','toolbar=0,menubar=0,location=0,scrollbars=1, resizable=1,width=670,height=600');
	}
}

function MM_openBrWindow(theURL,winName,features) //v2.0
{
    window.open(theURL,winName,features);
}