function createCookie(name,value,days) {
  if (days) {
     var date = new Date();
     date.setTime(date.getTime()+(days*24*60*60*1000));
     var expires = "; expires="+date.toGMTString();
  }
  else var expires = "";
     document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
       if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
    }
  return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}

function readingcookie(){			
			var cookie_value = readCookie('cookk');
				if (cookie_value == 'cons'){
					document.location = "/accueil_conseillers.htm";
				}
				if (cookie_value == 'entre'){
					document.location = "/accueil_entreprises.htm";
				}
				if (cookie_value == 'inve'){
					document.location = "/accueil_investisseurs.htm";
				}
		}
		
function readingcookie1(){			
			var cookie_value = readCookie('cookk');
				if (cookie_value == 'cons'){
					document.location = "/profils_conseillers_financiers_form.htm";
				}
				if (cookie_value == 'entre'){
					document.location = "/profils_entreprises_form.htm";
				}
				if (cookie_value == 'inve'){
					document.location = "/profils_investisseurs_form.htm";
				}
		}
		
function readingcookie2(){			
			var cookie_value = readCookie('cookk');
				if (cookie_value == 'cons'){
					document.location = "/compte_conseiller.htm";
				}
				if (cookie_value == 'entre'){
					document.location = "/compte_entreprise.htm";
				}
				if (cookie_value == 'inve'){
					document.location = "/compte_investisseur.htm";
				}
		}