<!-- // pop-up glossaire (centré)
function glossaire(maPage, maHauteur, maLargeur) {
var winl = (screen.width - 450) / 2;
var wint = (screen.height - 350) / 2;
winprops = 'height='+maHauteur+',width='+maLargeur+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no'
win = window.open(maPage, 'gloss', winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function facteur(mypage) {
var winl = (screen.width - 15) / 2;
var wint = (screen.height - 550) / 2;
winprops = 'height=350,width=470,top='+wint+',left='+winl+',scrollbars=yes,resizable=no'
win = window.open(mypage, 'fact', winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//  Fin pop-up glossaire -->

function ecouter(lien)
{
	window.opener.src=lien;
	window.opener.focus();
	window.close();
	//parent.parent.document.getElementById('frame_streamer').src = "/portail/passerelle.asp?EID=" + strEid;
}

function changeFrameSet(couleurbandeau)
{
	//parent.document.getElementById('frame_banner').src=bandeau;
	//parent.parent.frame_banner.getElementById('bandeau').src= "/skins/CITEMUSIQUE/images/integration/accueil/bandeau_" + couleurbandeau + ".gif";
	//window.top.frames['frame_banner'].getElementById('bandeau').src= "/skins/CITEMUSIQUE/images/integration/accueil/bandeau_" + couleurbandeau + ".gif";
	imgPath = top.frames['frame_banner'].document.getElementById('bandeau').src;
	pos = imgPath.indexOf('_');
	imgPath.substring(0, pos);
	//alert(imgPath);
	top.frames['frame_banner'].document.getElementById('bandeau').src = imgPath.substring(0, pos) + "_" + couleurbandeau + ".gif";	
}

//Ajout - Denocq 20070102 - re-integration dans le frameset
function goToFrameset(){
	//alert(window.name);
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
//alert(sPath);
	if((window.name == "notice") || (window.name == "gloss")){
		//rien
	}else{
//		alert(top.frames.length);
		if(top.frames.length <= 1){
			top.frames.location= "/masc/?INSTANCE=CITEMUSIQUE&URL=" + sPath;
		}
	}
}

function goToFramesetFS(){
	//alert(window.name);
	var sPath = window.location.pathname;
	var sSearch = window.location.search;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
//alert(sPath);
//alert(sSearch);
	if((window.name == "notice") || (window.name == "gloss")){
		//rien
	}else{
//		alert(top.frames.length);
		if(top.frames.length == 2){
			top.frames.location= "/masc/?INSTANCE=CITEMUSIQUE&URL=" + sPath + sSearch;
		}
	}
}
