function gereOnglets(obj) {	   document.getElementById("menu"+ obj ).className = "paveConteneur";}function gereOnglets2(obj) {	   document.getElementById("menu"+ obj ).className = "masquageHide";}// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . function hilite(obj) {     document.getElementById("btn"+ obj ).style.marginTop="-24px";}function delite(obj) {     document.getElementById("btn"+ obj ).style.marginTop="0px";}// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . function aff_contact() {  if (document.getElementById("contact").className == 'masquageHide') {	   document.getElementById("contact").className = 'masquageShow';}else { 	   document.getElementById("contact").className = 'masquageHide';}}// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . function defileJ(a){	$('#menuB'+a).slideToggle('slow');}// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . function defileA(a){	$('#affilies'+a).slideToggle('slow');}// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . function depart(a,b){if ($("#menuB"+a).is(':visible'))  {  $('#menuB'+a).slideUp('slow',function(){  document.location.href=b; }); }else { document.location.href=b; }}// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . function permuteBTN1(a){	   if(a==1){ document.getElementById("btn_urgence").src = 'img/urgence2.png';}	    else{ document.getElementById("btn_urgence").src = 'img/urgence.png';}}function permuteBTN2(a){	   if(a==1){ document.getElementById("btn_assureur").src = 'img/assureur2.png';}	    else{ document.getElementById("btn_assureur").src = 'img/assureur.png';}}function permuteBTN3(a){	   if(a==1){ document.getElementById("btn_client").src = 'img/client2.png';}	    else{ document.getElementById("btn_client").src = 'img/client.png';}}// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . function MM_preloadImages() { //v3.0  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}}function MM_swapImgRestore() { //v3.0  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;}function MM_findObj(n, d) { //v4.01  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);  if(!x && d.getElementById) x=d.getElementById(n); return x;}function MM_swapImage() { //v3.0  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}}// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . function trouve_points() {  if(isPostCode(document.formulaire_trouver.code1.value +document.formulaire_trouver.code2.value)==false)  { alert('Ce code postal n\'est pas valide'); return false}document.getElementById("loading").className = 'masquageShow';		document.getElementById("trouver").disabled=true; $.ajax({   type: "GET",   url: "trouve_code.php" ,   data: "code1=" +document.formulaire_trouver.code1.value+ "&code2=" +document.formulaire_trouver.code2.value,   success: function(msg){    	if(msg!=0) { 		document.getElementById("affichage").innerHTML = msg;		document.getElementById("loading").className = 'masquageHide';		document.getElementById("trouver").disabled=false;}   } });}function isPostCode(entry){ // checks Canadian codes onlystrlen=entry.length; if (strlen!==6){return false;}entry=entry.toUpperCase();  // in case of lowercase// Check for legal characters in string - note index starts at zeroif('ABCEGHJKLMNPRSTVXY'.indexOf(entry.charAt(0))<0) {return false;}if('0123456789'.indexOf(entry.charAt(1))<0) {return false;}if('ABCDEFGHJKLMNPQRSTUVWXYZ'.indexOf(entry.charAt(2))<0) {return false;}if('0123456789'.indexOf(entry.charAt(3))<0) {return false;}if('ABCDEFGHJKLMNPQRSTUVWXYZ'.indexOf(entry.charAt(4))<0) {return false;}if('0123456789'.indexOf(entry.charAt(5))<0) {return false;}return true;}function desactiveEnter(){ if (event.keyCode == 13) {      event.keyCode = 0;      window.event.returnValue = false; }}