function gotoPanier() {
	window.location.href = "/achat";
}

function gotoOffrePanier() {
	window.location.href = "/offre";
}

function changeFormat (url, idDetail) {
	
	var idEle = 'sel_format_' + idDetail;
	var ele = document.getElementById(idEle);
	
	var idFormat = ele.options[ele.selectedIndex].value; 
	
	window.location.href = url + "/did/" + idDetail + "/fid/" + idFormat;
}

function changeProfil (url, idDetail) {
	
	var idEle = 'sel_profil_' + idDetail;
	var ele = document.getElementById(idEle);
	
	var idProfil = ele.options[ele.selectedIndex].value; 
	
	window.location.href = url + "/did/" + idDetail + "/pid/" + idProfil;
}