function f_Action(p_Action){
	switch (parseInt(p_Action)){
		case 0 :
			return;
		break;
		// DEMANDE DE CREDIT AUTO - MOTO
		case 1 :
			document.FORM_MULTIUSE.target="_top";
			document.FORM_MULTIUSE.URL_CREATION_DEMANDE.value="/credit/Particulier/Asp/InscriptionParticulierCA.asp";
			document.FORM_MULTIUSE.URL_RETOUR.value="";
		break;
		// DEMANDE DE CREDIT A LA CONSOMATION
		case 2 :
			document.FORM_MULTIUSE.target="_top";
			document.FORM_MULTIUSE.URL_CREATION_DEMANDE.value="/credit/Particulier/Asp/InscriptionParticulierCC.asp";
			document.FORM_MULTIUSE.URL_RETOUR.value="";
		break;
		// DEMANDE DE RACHAT DE CREDIT
		case 3 :
			document.FORM_MULTIUSE.target="_top";
			document.FORM_MULTIUSE.URL_CREATION_DEMANDE.value="/credit/Particulier/Asp/InscriptionParticulierCR.asp";
			document.FORM_MULTIUSE.URL_RETOUR.value="";
		break;
		// DEMANDE DE CREDIT IMMOBILIER
		case 5 :
			document.FORM_MULTIUSE.target="_top";
			document.FORM_MULTIUSE.URL_CREATION_DEMANDE.value="/credit/Particulier/Asp/InscriptionParticulierCI.asp";
			document.FORM_MULTIUSE.URL_RETOUR.value="";
		break;
	}
    var v_Url;
    v_Url = document.FORM_MULTIUSE.URL_CREATION_DEMANDE.value;
    document.FORM_MULTIUSE.action=v_Url;
	document.FORM_MULTIUSE.submit();
}

