﻿function f_Action(p_Action)
{
  var v_Url="";
    
    switch (p_Action){
		case 1 :
	    window.document.getElementById('FORM_MULTIUSE').target="_self";
	    window.document.getElementById('FORM_MULTIUSE').action="";
      v_Url="/KA/DM/Particulier/Asp/V3_BureauParticulier.asp";
		  break;
	}
	window.document.getElementById('FORM_MULTIUSE').action=v_Url;
	window.document.getElementById('FORM_MULTIUSE').submit();
}