// min/max expansion codemaxWindExpand = "1000";	// if window expands beyond this value then use sizeFixed, otherwise use sizeExpandsizeFixed = "640";	// the fixed window sizesizeExpand = "90%";	// the expandable window percentagetestMode = 0;	// for testing, shows window size and status: 0 = off, 1 = on// * * * * * * DO NOT EDIT BELOW THIS LINE * * * * * *// IE needs a different way to determine windWidthif (navigator.appName.indexOf("Microsoft")!=-1)	{ windWidth = document.body.offsetWidth; }else	{ windWidth = window.innerWidth; }if (windWidth > maxWindExpand)	{ tableSize = sizeFixed; }else	{ tableSize = sizeExpand; }if (testMode == 1)	{		if (tableSize == sizeFixed)			{ winStatus = "fixed"; }		else			{ winStatus = "variable"; }				alert("max window width: " + maxWindExpand + ", window width: " + windWidth + ", window status: " + winStatus);	}