function mention(){
	var hauteur = 500;
	var largeur = 380;
	var	haut = (screen.height - hauteur)/2;
	var	left = (screen.width - largeur)/2;
	var	popup = open('ihm/mentionLegales.htm','', 'top=' + haut +', left='+left+', width='+largeur+', height='+hauteur);
	popup.focus();
}


function ouvrir(sens, nom)
{
	fermer();
	if(sens == 'L')
	{
		popup = window.open("","","HEIGHT=500,WIDTH=560, TOP=0, LEFT=0");
		dim = "width=560 height=500";
	}
	else
	{
		popup = window.open("","","HEIGHT=560,WIDTH=420, TOP=0, LEFT=0");
		dim = "width=420 height=560";
	}
	var titre = nom.substring(0,nom.indexOf("."));
	
	var contenu = "<html><head><title>"+ titre +"</title>";
	contenu += "<meta http-equiv='imagetoolbar' content='no' />";
	contenu += "<meta http-equiv='imagetoolbar' content='false' /></head>";
	contenu += "<body bottommargin='0' leftmargin='0' rightmargin='0' topmargin='0'>";
	contenu += "<img " + dim +" src='librairie/photos/"+ nom +"'></body></html>";
	
	window.popup.document.write(contenu);
	window.popup.document.close();
	window.popup.document.focus();
}

function fermer()
{
	if(window.popup != null)
		window.popup.close();
}