// ================================== FOOTER
	function checkLocation(){ 
	  if(navigator.appName.indexOf("Explorer") != -1)
		  document.getElementById('footer').style.top = document.documentElement.offsetHeight - 38 + document.documentElement.scrollTop;	
		else
		  document.getElementById('footer').style.top = window.innerHeight - 35 + window.pageYOffset + "px";		
		setTimeout("checkLocation()", 100);		
	}	
	

