//window.onload = setSpacerHeight;
//window.onresize = setSpacerHeight;

function setSpacerHeight() {
	if (self.innerWidth){
		h = self.innerHeight;
	}else if (document.documentElement && document.documentElement.clientWidth){
		h = document.documentElement.clientHeight;
	}else if (document.body){
		h = document.body.clientHeight;
	}
	var spacer = document.getElementById("pusher");
	spacer.height = h-280;
}

function drawScalingImg(){
	document.write("<img src='i/s.gif' width='1' height='1' id='pusher' />");
}