// makes sure page fills the page by adding a tall image
	
	var pageHeight = document.all ? document.body.clientHeight : window.innerHeight;

	var heightRemain = pageHeight - 550;

	if (heightRemain > 0)
		document.write('<img src="images/b.gif" width=1 height=' + heightRemain + ' border=0 alt="">\n');