// JavaScript Document
<!--
	var vpwidth = -1;
	var vpheight = -1;
	
	var constheight = 0;
	
	function vpInfo() {
		// for moz based/netscape/opera/ie7
		if (typeof window.innerWidth != 'undefined') {
			vpwidth = window.innerWidth;
			vpheight = window.innerHeight - constheight;

			
		}
		
		// ie6 with doctype
		else if (typeof document.documentElement != 'undefined' 
				 && typeof document.documentElement.clientWidth != 'undefined' 
				 && document.documentElement.clientWidth != 0) {
			vpwidth = document.documentElement.clientWidth;
			vpheight = document.documentElement.clientHeight - constheight;
		}
		
		// lte ie5
		else {
			vpwidth = document.getElementsByTagName('body')[0].clientWidth;
			vpheight = document.getElementsByTagName('body')[0].clientHeight - constheight;
		}
	}
	
	function spacerWidth() {
		vpInfo();
		
		document.write('<img src=\"..\/FEOHotel.Display\/QUINCY\/IMAGES\/spacer.gif\" width=\"' + vpwidth + '\" height=\"1\" \/>');
	}
	
	function spacerHeight() {
		vpInfo();
		document.write('<img src=\"..\/FEOHotel.Display\/QUINCY\/IMAGES\/spacer.gif\" width=\"1\" height=\"' + vpheight + '\" \/>');
	}
//-->
