function open_lightbox(w){
	this.document.getElementById("lightbox").style.display="block";
	this.document.getElementById("lightbox_html").backgroundColor="#000000";
	this.document.getElementById("lightbox_html").innerHTML=w;
}

function open_lightbox_vote(w){
	this.document.getElementById("lightbox").style.display="block";
	this.document.getElementById("lightbox_html").innerHTML='<iframe src="vote_validation.php?id='+w+'" width="600" height="300" frameborder="no" scrolling="no"></iframe>';
}
function close_lightbox(){
	this.document.getElementById("lightbox").style.display="none";
	this.document.getElementById("lightbox_html").innerHTML="";
}



function open_mentions(){
	if(this.document.getElementById("bulle").style.display=="block"){
		this.document.getElementById("bulle").style.display="none";
	}else{
		this.document.getElementById("bulle").style.display="block";
	}
	
}
function close_mentions(){
	this.document.getElementById("bulle").style.display="none";
}

function open_reglement(){
	this.document.getElementById("lightbox").style.display="block";
	this.document.getElementById("lightbox_html").innerHTML='<h1>R&eacute;glement : </h1><iframe frameborder="no" width="640" height="500" src="reglement.html"></iframe>';

}

