
function addFooter(){
	footerDiv = document.createElement("div");
	footerDiv.style.backgroundColor="#222c63";
	footerDiv.style.color="#ffffff";
	footerDiv.style.fontFamily="Arial, Comic Sans MS, Times";
	footerDiv.style.fontSize="10px";
	footerDiv.style.height="150px";	
	footerDiv.style.width="100%";
	footerDiv.style.textAlign="right";
	footerDiv.style.borderWidth="0";
	footerDiv.style.borderstyle="none";				
	textToDisplay = '<div id="footer"><p style="margin-top:23px;">© Tous droits réservés. 2011.<a href="index.html"> SYNCHRO MEDICAL<sup>®</sup></a>. Design & Concept: <a href="http://www.synthes3d.com" target="_blank"> www.synthes3d.com</a></p></div>';
	footerDiv.innerHTML= textToDisplay;
	document.body.appendChild(footerDiv);
}
