	// Used to determine width of page
	if (screen.availWidth < 893) {
		tblWidth = 770
		imgSpacer = 15
		cellWidth = 541
		hdrNavWidth = 73
		hdrWidth = 330
		subBack = "sub_back_sm.gif"
		hdrName = "hdr_name_sm.gif"
		hdrNav = "hdr_nav2_sm.gif"
		}
	else {
		tblWidth = 992
		imgSpacer = 36
		cellWidth = 761
		hdrWidth = 531
		hdrNavWidth = 274
		subBack = "sub_back_lrg.gif"
		hdrName = "hdr_name.gif"
		hdrNav = "hdr_nav2.gif"
		}
	
	// top left nav images
	if (document.images) {
				HomeOn = new Image(); HomeOn.src = "/images/hdr_home2.gif";
				HomeOff = new Image(); HomeOff.src = "/images/hdr_home1.gif";
				TextOn = new Image(); TextOn.src = "/images/hdr_text2.gif";
				TextOff = new Image(); TextOff.src = "/images/hdr_text1.gif";
				AboutOn = new Image(); AboutOn.src = "/images/hdr_about2.gif";
				AboutOff = new Image(); AboutOff.src = "/images/hdr_about1.gif";
				ContactOn = new Image(); ContactOn.src = "/images/hdr_contact2.gif";
				ContactOff = new Image(); ContactOff.src = "/images/hdr_contact1.gif";
			}
	
	// Function to activate images
	function imgOn(imgName) {
		if (document.images) {
			document[imgName].src = eval(imgName + "On.src");
			}
	}
	
	// Function to deactivate images
	function imgOff(imgName) {
		if (document.images) {
			document[imgName].src = eval(imgName + "Off.src");
			}
	}
	
	// Printer Friendly
	function PrntWindow(newpage, pagename) {
		newPrntwin = window.open(newpage, pagename, "toolbar=yes,menubar=yes,location=no,scrollbars=yes,width=740,height=500")
	}
	
	// New Internal Window
	function IntWindow(newpage, pagename) {
		newIntwin = window.open(newpage, pagename, "toolbar=no,menubar=no,location=no,scrollbars=no,width=400,height=400")
	}
	
	// New Internal Window - Scrolling
	function ScrollWindow(newpage, pagename) {
		newScrollwin = window.open(newpage, pagename, "toolbar=no,menubar=no,location=no,scrollbars=yes,width=417,height=400")
	}	
	
	// New Window
	function ExtWindow(newpage) {
		newExtwin = window.open('http://' + newpage)
	}

	// New Window for Image
	function ImgWindow(webimage,w,h) {
		newImgWin = window.open(webimage,"WebImage", "menubar=no,toolbar=no,location=no,scrollbars=yes,width=" + w + ",height=" + h)
	}
	
	


	
	
