// JavaScript Document

function showhide(ciblediv,cibleimg) {
	var ciblediv = document.getElementById(ciblediv);
	if (ciblediv.style.display == "block") {
		ciblediv.style.display = "none";
		document.getElementById(cibleimg).src = "images/expand.gif";
	} else {
		ciblediv.style.display = "block";
		document.getElementById(cibleimg).src = "images/collapse.gif";
	}
}
function validAjoutCat(data) {
	if (data.length == 0) {
		alert("Veuillez fournir un nom pour la catégorie");
		return false;
	} else {
		return true;
	}
}
function validDeleteFichier(id) {
	if (confirm("Etes vous sur de vouloir supprimer ce fichier")) {
		document.location = "process/deleteFile.php?id="+id;
	}
}
function rendsVisibleFichier(state,id) {
	document.location = "process/rendsVisibleFichier.php?state="+state+"&id="+id;
}
function downloadFile(id) {
	window.open('download.php?id='+id);
}
