function addFooter(){
	footerDiv = document.createElement("div");
	footerDiv.style.backgroundColor="white";
	footerDiv.style.color="blue";
	footerDiv.style.fontFamily="Arial, Comic Sans MS, Times";
	footerDiv.style.fontSize="10px";
	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 width='875' color='#DDDDDD' />";
	textToDisplay += "Copyright © Tamombo Tm 2009";
	textToDisplay += "<hr width='875' color='#DDDDDD' />";	
	footerDiv.innerHTML= textToDisplay;
	document.body.appendChild(footerDiv);
}

