<!--	
/* 
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.
 */
// resize fix for ns4
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); }
}
var infoLyr;
function initInfoLyr() {
	// arguments: id, width, height
	// be sure to set height large enough or ns4 will clip it off
	infoLyr = new writeObj('infoDiv',402,302);
	showInfo(origMsg);	
}
function showInfo(txt) {
	if (!infoLyr) return;
	var cntnt = '<div>'+txt+'</div>';
	infoLyr.writeLyr(cntnt);
}

window.onload = initInfoLyr;
// -->