// JavaScript Document

function rollOverTriumv(element){
	if(element == "horaire" || element == "organisateurs")
		document.getElementById(element).className = "btnMenuOverLast";
	else
		document.getElementById(element).className = "btnMenuOver";
}
function rollOutTriumv(element){
	if(element == "horaire" || element == "organisateurs")
		document.getElementById(element).className = "btnMenuLast";
	else
		document.getElementById(element).className = "btnMenu";
}

function selectSubMenu(element){
		document.getElementById(element).className = "menuLinkSelected";
	
}

function openW(langue){
	window.open("/popTriumv.asp?langue="+langue,"Triumvirat","toolbar=no,resizable=false,width=475,height=450");
}
function openPrint(doc, w, h){
	
	if(w == null)
		w = 675;
	if (h == null)
		h = 500;
		
	whFormat = "width="+w+",height="+h;
	window.open(doc,"Triumvirat","toolbar=1,location=0,resizable=1,scrollbars=1,"+whFormat);
}