function f_Action_Filtre_Panaroma(p_TypeFiltre, p_Valeur, p_Marque){
	if(p_Valeur==-1) {return}
	switch (p_TypeFiltre){
		case "DTY" :
			document.FORM_MULTIUSE.DTY_CODE.value=p_Valeur;
			document.FORM_MULTIUSE.FILTRE_EN_COURS.value='';
			document.FORM_MULTIUSE.NUMMARQUE.value='';
			document.FORM_MULTIUSE.MARQUE.value='';
			p_Marque='';
		break;
		case "CTX" :
			document.FORM_MULTIUSE.FILTRE_EN_COURS.value=p_Valeur;
			document.FORM_MULTIUSE.MARQUE.value=p_Marque;
		break;
		case "DOM" :
			document.FORM_MULTIUSE.FILTRE_EN_COURS.value=p_Valeur;
			document.FORM_MULTIUSE.MARQUE.value=p_Marque;
		break;
		case "MRQ" :
			document.FORM_MULTIUSE.FILTRE_EN_COURS.value='';
			document.FORM_MULTIUSE.MARQUE.value=p_Marque;
		break;
		case "CLEAR" :
			document.FORM_MULTIUSE.DTY_CODE.value=-1;
			document.FORM_MULTIUSE.FILTRE_EN_COURS.value='';
			document.FORM_MULTIUSE.NUMMARQUE.value='';
			document.FORM_MULTIUSE.MARQUE.value='';
			p_Marque='';
		break;
		}
	switch (p_Marque) {
		case "" :
			document.FORM_MULTIUSE.action="PanoramaMarques.asp";
		break;
		default:
			document.FORM_MULTIUSE.action=p_Marque+"_"+p_Valeur+"_Accueil.asp";
		break;
		}
	document.FORM_MULTIUSE.target="_top"
	document.FORM_MULTIUSE.submit();
	return;
}


function f_Action(p_Marque, p_Raison_Sociale, p_Page, p_NumMarque){
	var v_Url=""
	v_Url=p_Marque+"_"+p_Page+".asp"
	document.FORM_MULTIUSE.MARQUE.value=p_Marque
	document.FORM_MULTIUSE.NUMMARQUE.value=p_NumMarque
	document.FORM_MULTIUSE.RAISON_SOCIALE.value=p_Raison_Sociale
	document.FORM_MULTIUSE.target="_self"
	document.FORM_MULTIUSE.action=v_Url
	document.FORM_MULTIUSE.submit()
}

function f_Action_Page(p_Page){
	var v_Url=""
	v_Url=p_Page+".asp"
	document.FORM_MULTIUSE.target="_self"
	document.FORM_MULTIUSE.action=v_Url
	document.FORM_MULTIUSE.submit()
}
