<!--
//Ferdinand Herve
function changeimage()
{
   var profil_img = GetCookie ('profil_img');
   switch(profil_img)
   {
   case "accedant" :
     document.profil_img.src='/images/img_acheter/tit_acheter_03.gif';
     break;
   case "investisseur" :
     document.profil_img.src='/images/img_investir/tit_investir_01.gif';
     break;
   case "sel_acc" :
     document.profil_img.src='/images/img_acheter/tit_acheter_sel.gif';
     break;
   case "sel_inv" :
     document.profil_img.src='/images/img_investir/tit_investir_sel.gif';
     break;
   case "prescripteur" :
     document.profil_img.src='/images/img_immo/tit_besson.gif';
	 break;
   default :
     document.profil_img.src='/images/img_commun/tr.gif';
   }
}

function setProfil(profil_img)
{
  var prof = GetCookie('profil_img');  
  var expdate = new Date ();
  expdate.setTime (expdate.getTime() + (24 * 60 * 60 * 1000));         
  
  SetCookie('profil_img',profil_img,expdate,'/');
  prof = GetCookie('profil_img');
}

// -->
