	
function Actualyse(iIdProd,iType,iContent) {
		if (iType == undefined){
			iType = "cat";	
		}
		if (iType=="cat") {
			var iSelected = document.getElementById('select'+iIdProd).options.selectedIndex
			var iTempValue= document.getElementById('select'+iIdProd).options[iSelected].value;
			document.location.href='admin_content_category.php?id='+iIdProd+ '&order='+iTempValue;
		}
		else if  (iType=="img") {
			var iSelected = document.getElementById('select'+iIdProd).options.selectedIndex
			var iTempValue= document.getElementById('select'+iIdProd).options[iSelected].value;
			document.location.href='admin_library.php?id='+iIdProd+ '&order='+iTempValue+'&content='+ iContent;
		}
		else if (iType=="content") {
			var iSelected = document.getElementById('selectContent'+iIdProd).options.selectedIndex
			var iTempValue= document.getElementById('selectContent'+iIdProd).options[iSelected].value;
			document.location.href='admin_content_update.php?id='+iIdProd+ '&order='+iTempValue;
		}
		else if (iType=="event") {
			var iSelected = document.getElementById('selectContent'+iIdProd).options.selectedIndex
			var iTempValue= document.getElementById('selectContent'+iIdProd).options[iSelected].value;
			document.location.href='admin_event_update.php?id='+iIdProd+ '&order='+iTempValue;
		}
		else if (iType=="product") {
			var iSelected = document.getElementById('selectProduct'+iIdProd).options.selectedIndex
			var iTempValue= document.getElementById('selectProduct'+iIdProd).options[iSelected].value;
			document.location.href='admin_product_update.php?id='+iIdProd+ '&order='+iTempValue;
		}
		else if (iType=="link") {
			var iSelected = document.getElementById('selectLink'+iIdProd).options.selectedIndex
			var iTempValue= document.getElementById('selectLink'+iIdProd).options[iSelected].value;
			document.location.href='admin_link_update.php?id='+iIdProd+ '&returnCat='+iContent+'&order='+iTempValue;
		}
		else if (iType=="widget") {
			var iSelected = document.getElementById('selectwidget'+iIdProd).options.selectedIndex
			var iTempValue= document.getElementById('selectwidget'+iIdProd).options[iSelected].value;
			document.location.href='admin_widget_update.php?id='+iIdProd+ '&returnCat='+iContent+'&order='+iTempValue;
		}
		
}
function changeImageAjax(sId,sName,sTarget,sFrom){
	if(sName == "")
	{
		sName = "(sans nom)";
	}
	document.getElementById(sFrom).innerHTML = "Vous avez choisi l\'image <span class='boldy'>" + sName + "</span> " +  "<a href='#' onclick= 'window.location.reload()'>annuler ce choix</a>";
	document.getElementById(sTarget).value= sId;
	document.getElementById("divhide").style.display="none";
	
}