function popup(url, titre, largeur, hauteur, scroll, size)
{window.open(url, titre, 'width=' + largeur + ', height=' + hauteur + ', scrollbars=' + scroll +', resizable='+ size );}

//disclaimer
function showHideLayers(lg,profil){
	document.getElementById('disclaimer_en_prof').style.display='none';
	document.getElementById('disclaimer_en_part').style.display='none';
	document.getElementById('disclaimer_fr_prof').style.display='none';
	document.getElementById('disclaimer_fr_part').style.display='none';
	
	if (lg=='en' && profil=="PROF") {
		document.getElementById('disclaimer_en_prof').style.display='block';
	}else if (lg=='en' && profil=="PART") {
		document.getElementById('disclaimer_en_part').style.display='block';
	}else if (lg=='fr' && profil=="PROF"){
		document.getElementById('disclaimer_fr_prof').style.display='block';
	}else if (lg=='fr' && profil=="PART"){
		document.getElementById('disclaimer_fr_part').style.display='block';
	}
	document.getElementsByName('lg')[0].value=lg;
	document.getElementsByName('profil')[0].value=profil;
}

/* FP */

function lien_scpi() {
    i = document.Choix.liste_scpi.selectedIndex;
    if (i == 0) return;
    url = document.Choix.liste_scpi.options[i].value;
    if ( url != "0" ) { window.open(url, '', 'scrollbars=yes, resizable=yes, width=640, height=600');}
}
function lien_sci() {
    i = document.Choix.liste_sci.selectedIndex;
    if (i == 0) return;
    url = document.Choix.liste_sci.options[i].value;
    if ( url != "0" ) { window.open(url, '', 'scrollbars=yes, resizable=yes, width=640, height=600');}
}
function lien_grpt() {
    i = document.Choix.liste_grpt.selectedIndex;
    if (i == 0) return;
    url = document.Choix.liste_grpt.options[i].value;
    if ( url != "0" ) { window.location.href = url;}
}
function lien_opci() {
    i = document.Choix.liste_opci.selectedIndex;
    if (i == 0) return;
    url = document.Choix.liste_opci.options[i].value;
    if ( url != "0" ) { window.open(url, '', 'scrollbars=yes, resizable=yes, width=650, height=600');}
}
