/*function positionFooter(){
	
	//alert(window.innerHeight);
	//alert(screen.height);
	var the_heightT=screen.height;
	
	document.getElementById('contentArea').style.height=the_heightT+"px";
}*/
function positionFooter(){
	var the_heightT=document.getElementById('contentArea').offsetHeight;
	
	document.getElementById('wrapper').style.height=the_heightT+159+"px";
	
}