
window.onload = function dothis(){	
	resize(0,1);
	}

window.onresize = function dothat(){	
	resize(0);
	}
	
	function resize(mozfix,write){
	var height;
	height = document.body.scrollHeight;
	width = document.body.scrollWidth;
	if(height < document.documentElement.clientHeight)height = document.documentElement.clientHeight;
	height += mozfix;

	document.getElementById('bg').style.height = height + 'px';
	document.getElementById('bg').style.width = width + 'px';

  	var Output  = "<img id='background' src='pageBackground.jpg'>";
    
  document.getElementById("Text").innerHTML = Output;

	
	}