function f_Action(p_Action){
	switch (parseInt(p_Action)){
		case 0 :
			return;
		break;
		
		//DEMANDE DE DEVIS
		case 1 :
			document.FORM_MULTIUSE.target="_top"
			document.FORM_MULTIUSE.action="/DM/General/Asp/OrientationDemande.asp"
		break;
		
		//PANORAMA MUTUELLE
		case 2 :
			document.FORM_MULTIUSE.target="_top"
			document.FORM_MULTIUSE.action=v_Href_Base_KA+"PanoramaMarques/Asp/PanoramaMarques.asp"
		break;
		
		//F.A.Q.
		case 3 :
			document.FORM_MULTIUSE.target="_top"
			document.FORM_MULTIUSE.action="/DM/General/Asp/Faq.asp"
		break;
		
		//GLOSSAIRE
		case 4 :
			document.FORM_MULTIUSE.target="_top"
			document.FORM_MULTIUSE.action="/DM/General/Asp/Glossaire.asp"
		break;
		
		//GUIDE PRATIQUE
		case 5 :
			document.FORM_MULTIUSE.target="_top"
			document.FORM_MULTIUSE.action="/DM/General/Asp/GuidePratique.asp"
			return;
		break;
		
	}
	document.FORM_MULTIUSE.submit()
}

