function addFooter(){
	footerDiv = document.getElementById("description");
	footerDiv.style.color="#000000";
	footerDiv.style.fontFamily="Arial, Comic Sans MS, Times";
	footerDiv.style.fontSize="12px";
	footerDiv.style.textAlign="center";

	footerDiv.style.position = 'relative';
	
	footerNews = document.getElementById("newsletter");
	if (footerNews!='')
	{
		if(window.devicePixelRatio)
		{
			footerDiv.style.bottom="250px";	
		}
		else
		{
			footerDiv.style.bottom="190px";
		}
	}
	else
	{
		if(window.devicePixelRatio)
		{
			footerDiv.style.bottom="260px";	
		}
		else
		{
			footerDiv.style.bottom="240px";
		}
	}
	
	footerDiv.style.left="19%";
	footerDiv.style.width="60%";
	footerDiv.style.height="30px";


	document.body.appendChild(footerDiv);
}
