function entete(){ 	elmt = document.getElementById("utility");	if (elmt==null) alert("utility null !!");	else 		elmt.innerHTML = "&nbsp;<a href='en/company.html'>English</a>"			+" | <a href='mailto:contact@diatelic.com'>Nous contacter</a>"			+" | <a href='plan.html'>Plan du Site</a>&nbsp;&nbsp;	";		elmt = document.getElementById("siteInfo");	if (elmt==null) alert("siteInfo null !!");	else	elmt.innerHTML = "&copy; 2002-2007 Diat&eacute;lic ";			elmt = document.getElementById("devise");	if (elmt==null) alert("devise null !!");	else elmt.innerHTML = "Les nouvelles technologies au service de la sant&eacute;,"		+" le suivi m&eacute;dical et l'aide au diagnostic";	}function affiche_global(){ 	elmt = document.getElementById("globalLink");	if (elmt==null) {		alert("globalLink null !!");	}	else{		elmt.innerHTML = "<a href='index.html' id='gl1' class='glink' onmouseover='naviguer(event,menuitem1);'>&nbsp;&nbsp;&nbsp;&nbsp;Société&nbsp;&nbsp;&nbsp;&nbsp;</a>"	  		+"<a href='produits.html' id='gl2' class='glink' onmouseover='naviguer(event,menuitem2);'> &nbsp;&nbsp;Produits&nbsp;&nbsp; </a>"	  		+"<a href='services.html' class='glink' onmouseover='naviguer(event,menuitem3);'> &nbsp;&nbsp;&nbsp;Services&nbsp;&nbsp; </a>"	  		+"<a href='refs.html' class='glink' onmouseover='naviguer(event,menuitem4);'> &nbsp;Références </a>";	}			elmt = document.getElementById("ssmenu1");	if (elmt==null) {		alert("ssmenu1 null !!");	}	else{		elmt.innerHTML = "<a href='societe.html'>Pr&eacute;sentation</a> "			+" | <a href='contact.html'>Contact</a> "			+" | <a href='acces.html'>Acc&egrave;s</a> ";	}	elmt = document.getElementById("ssmenu2");	if (elmt==null) {		alert("ssmenu2 null !!");	}	else{		elmt.innerHTML = "<a href='services.html'>&nbsp;Dév. à façon</a>"		+" | <a href='diadp.html'>DP</a>"		+" | <a href='diahd.html'>HD</a>"		+" | <a href='diamie.html'>Dian&eacute;mie</a>"		+" | <a href='techno.html'>Technologies</a>";		/* | <a href='prod_serv.html'>Services</a>";*/	}		elmt = document.getElementById("ssmenu3");	if (elmt==null) {		alert("ssmenu3 null !!");	}	else{		/*elmt.innerHTML = "";*/		elmt.innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='applis.html'>Applications TIC</a>"		+" | <a href='se.html'>Système experts</a>";	}	elmt = document.getElementById("ssmenu4");	if (elmt==null) {		alert("ssmenu4 null !!");	}	else{		elmt.innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='publications.html'>Publications</a>"		+" | <a href='rapports.html'>Rapports externes</a> "		+" | <a href='experimentation.html'>Etude DP</a> ";	}	}/*function afficher(no){	elmt = document.getElementById("lu"+no);	if (elmt==null) alert("pas trouve l'element lu"+no);	else elmt.style.display = "inline";	elmt = document.getElementById("lire"+no);	if (elmt==null) alert("pas trouve l'element lire"+no);	else elmt.style.display = "none";}function masquer(no){	elmt = document.getElementById("lu"+no);	elmt.style.display = "none";		elmt = document.getElementById("lire"+no);	elmt.style.display = "inline";}*/   function gohome(){	document.location.href = "index.html";}   