// JavaScript Document
function afficheTheme(){	
	liste=document.getElementById("listeTheme");
	if(liste.style.top=="auto"){
		liste.style.top="-2000px"
	}else{
		var theWidth, theHeight;
		// Window dimensions:
		if (window.innerHeight) {
		theHeight=window.innerHeight;
		}
		else if (document.documentElement && document.documentElement.clientHeight) {
		theHeight=document.documentElement.clientHeight;
		}
		else if (document.body) {
		theHeight=document.body.clientHeight;
		}
		listeHeight=(theHeight-250)+"px";
		liste.style.height=listeHeight;
		liste.style.top="auto"
	}
		
}
function masqueTheme(){
	liste=document.getElementById("listeTheme");
	if(liste.style.top=="auto"){
		liste.style.top="-2000px"
	}
}