<!-- Zone Images + Scrolls Central -->
ImgsPubs();
function ImgsPubs(){ // alert("aert");
	var exp_reg = /[ ]/gi;
	var GroupPub = new String("");
	var CatPub = new String("");
	var SubCatPub = new String("");
	var CSV = new String("");
	var NameGroupCatSubCat = new String("");
	
	if (document.getElementById("GroupPub").getAttribute('name') != ""){
	GroupPub = document.getElementById("GroupPub").getAttribute('name').replace(exp_reg, "_");
	NameGroupCatSubCat = GroupPub;
	CSV = GroupPub;}
	
	if (document.getElementById("CatPub").getAttribute('name') != ""){
	CatPub = document.getElementById("CatPub").getAttribute('name').replace(exp_reg, "_");
	NameGroupCatSubCat = GroupPub + "/" + CatPub;
	CSV = CatPub;}
	
	if (document.getElementById("SubCatPub").getAttribute('name') != ""){
	SubCatPub = document.getElementById("SubCatPub").getAttribute('name').replace(exp_reg, "_");
	NameGroupCatSubCat = GroupPub + "/" + CatPub + "/" + SubCatPub;
	CSV = SubCatPub;}
	
	var DATA = "DATA=" + NameGroupCatSubCat + "&" + "CSV=" + CSV; //alert (DATA);
	ViewContent( 'main' , 'ListerFichierImgsPub.php' , 'GET' , DATA);
}

function Eval(val) {
	//alert("REPONSE Req " + val);
	document.getElementById("DivScrollCenterPubs").innerHTML=val;
}
<!-- Fin Zone Images + Scrolls Central -->

