var isshowing = 0;
function HideAndShow(name){
	if(isshowing!=0) document.getElementById(isshowing).style.display = "none";
	isshowing = name;
	if(isshowing!=0) document.getElementById(isshowing).style.display = "block";
}

function RubriqueAffiche(){
	document.getElementById('RubriqueImage').style.display = 'none';
	document.getElementById('RubriqueContent').style.display = 'block';
}

function ArticleDatearchnull(chkbx){
	if(chkbx.checked==true) document.getElementById('ArticleDateArchive').style.display = 'block';
	else document.getElementById('ArticleDateArchive').style.display = 'none';
}