		/*Trap du CR*/
		function trap() { 
			if((event.which && event.which == 13)||(event.keyCode && event.keyCode == 13)) 
				{ 
					switch(document.Form1.ActiveFct.value) {
						case "USERACCOUNT" : 
							document.Form1.UserAccount1_CRUserAccount.value = 'true'; 
							document.Form1.submit(); 
							break; 
							
						default : 
							document.Form1.UserAccountSignIn1_Test.value = 'true'; 
							document.Form1.submit(); 	
					
					}				
				} 
			} 
