document.getElementsByTagName('body')[0].style.display = 'block';

if (document.images) {   pic1= new Image(1,1);    pic1.src="/includes/images/over.gif";    pic2= new Image(1,1);    pic2.src="/includes/images/arrow.gif";    pic3= new Image(1,1);    pic3.src="/images/buttonOver.gif";   }

function getPageSizeWithScroll(){
	if (window.innerHeight && window.scrollMaxY) {// Firefox
		yWithScroll = window.innerHeight + window.scrollMaxY;
		xWithScroll = window.innerWidth + window.scrollMaxX;
	} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
		yWithScroll = document.body.scrollHeight;
		xWithScroll = document.body.scrollWidth;
	} else { // works in Explorer 6 Strict, Mozilla (not FF) and Safari
		yWithScroll = document.body.offsetHeight;
		xWithScroll = document.body.offsetWidth;
  	}
	arrayPageSizeWithScroll = new Array(xWithScroll,yWithScroll);
	//alert( 'The height is ' + yWithScroll + ' and the width is ' + xWithScroll );
	//return arrayPageSizeWithScroll;
	
	//alert(yWithScroll);
	
	if (yWithScroll > 1900)
	{
		document.getElementById('bottomNote').style.display = 'block';
	}
	
}
getPageSizeWithScroll();

