
function f_Action(p_Action){
	switch (p_Action){
		case 0 :
			return;
		break;
		case 1 :
			//CALCUL
						
			if (document.all('CHOIX_A')[0].checked==true) {
				document.FORM_MULTIUSE.TYPEEMPRUNT.value=1;
			}
				else {
				document.FORM_MULTIUSE.TYPEEMPRUNT.value=2;
			}

			
			document.FORM_MULTIUSE.TYPEASSURANCE.value=2;
						
			
			document.FORM_MULTIUSE.target="_top"
			document.FORM_MULTIUSE.action="/DD/ContenuSimulateurs/Asp/Emprunts.asp"
			
		break;
		//MODIFIER DEMANDE
		}
	document.FORM_MULTIUSE.submit()
}


