// JavaScript Document/*This code is from Dynamic Web Coding at http://www.dyn-web.com/Copyright 2001-2 by Sharon Paine See Terms of Use at http://www.dyn-web.com/bus/terms.htmlPermission granted to use this code as long as this entire notice is included.*/var pgLoaded = false;var wndo = new Array();	// "window(s)" for scrollable contentvar origWidth, origHeight;if (document.layers) {	origWidth = window.innerWidth; origHeight = window.innerHeight;	window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); }}window.onload = initScrLyr; function initScrLyr() {	pgLoaded=true;			// creat scrollable content areas	// arg: id of div containing scrollable div(s)	wndo[0] = new dynObj('wn');		// load scrolling content	// arg's: array number of wndo, id of scroll div	// add id of table as last argument (for horizontal scrolling)	loadScrLyr(0,'lyr1','t1');	  }