function addFooter(){
	footerDiv = document.createElement("div");
	footerDiv.style.textAlign="center";
	footerDiv.style.padding="0 10 0 10";
	footerDiv.style.margin="0";
	footerDiv.style.borderWidth="0";
	footerDiv.style.borderstyle="none";		
textToDisplay  = "<hr height='2px' color='#037bad'>";
textToDisplay += "<p class='Style1' align='center'>";
textToDisplay += "Telecom Systems est une soci&eacute;t&eacute; de Network Related Services";
textToDisplay += "</a>";
textToDisplay += "</p>";
textToDisplay += "<p class='Style4' align='center'>";
textToDisplay += "&copy; 2010 Telecom Systems";
textToDisplay += "</p>";
	footerDiv.innerHTML= textToDisplay;
	document.body.appendChild(footerDiv);
}
