function FocusText(BoxName){   if (BoxName.value == BoxName.defaultValue) {	  BoxName.value = '';   }}function BlurText(BoxName){   if (BoxName.value == '') { 	  BoxName.value = BoxName.defaultValue;   }}function verif_id(){	if		(document.identify.email.value == "Identifiant")	{ alert("          Attention !\n\nAfin de vous identifier,\nveuillez remplir le champ 'Identifiant' (vorte email)"); return false;}	else if	(document.identify.password.value == "Mot de passe")	{ alert("          Attention !\n\nAfin de vous identifier,\nveuillez indiquer votre mot de passe"); return false;}	return true;}function popup(page) {  window.open(page,'legende','scrollbars=no,resizable=yes,width=500,height=350');}function popup_img(page) {  window.open(page,'legende','scrollbars=no,resizable=yes,width=820,height=620');}function popup2(page) {  window.open(page,'legende','scrollbars=no,resizable=yes,width=550,height=400');}// onglets blogfunction switchEtat(id, id_parent) {	var etat = document.getElementById(id).style.display;		if(etat == 'block') {		document.getElementById(id).style.display = 'none';		document.getElementById(id_parent).setAttribute("style","background:url('img/arrow.gif') no-repeat;");	}		else {		document.getElementById(id).style.display = 'block';		document.getElementById(id_parent).setAttribute("style","background:url('img/arrow_down.gif') no-repeat;");	}}				function GetId(id)				{				return document.getElementById(id);				}				var i=false; // La variable i nous dit si la bulle est visible ou non								function move(e) 				{				  if(i) {  // Si la bulle est visible, on calcul en temps reel sa position ideale				    if (navigator.appName!="Microsoft Internet Explorer") { // Si on est pas sous IE				    GetId("curseur").style.left=e.pageX + 5+"px";				    GetId("curseur").style.top=e.pageY + 10+"px";				    }				    else { // Modif proposé par TeDeum, merci à lui				    if(document.documentElement.clientWidth>0) {				        GetId("curseur").style.left=20+event.x+document.documentElement.scrollLeft+"px";				        GetId("curseur").style.top=10+event.y+document.documentElement.scrollTop+"px";				    }				    else {				        GetId("curseur").style.left=20+event.x+document.body.scrollLeft+"px";				        GetId("curseur").style.top=10+event.y+document.body.scrollTop+"px";				    }				    }				  }				}								function montre(text) {				  if(i==false) {				  GetId("curseur").style.visibility="visible"; // Si il est cacher (la verif n'est qu'une securité) on le rend visible.				  GetId("curseur").innerHTML = text; // Cette fonction est a améliorer, il parait qu'elle n'est pas valide (mais elle marche)				  i=true;				  }				}				function cache() {				if(i==true) {				GetId("curseur").style.visibility="hidden"; // Si la bulle etais visible on la cache				i=false;				}				}				document.onmousemove=move; // des que la souris bouge, on appelle la fonction move pour mettre a jour la position de la bulle.