function reposWin(){
	var offSet = -20;
	var docWidth = document.documentElement.scrollWidth;	// Firefox
	var windowLeft = ((docWidth/2) - (document.getElementById('theWindow').scrollWidth/2))+offSet;

	if (windowLeft < 0)
		windowLeft = 0;
	document.getElementById('theWindow').style.left = windowLeft+"px";

	disclaim(document.getElementById('disclaimer'));
}

function disclaim(myEle){
	myEle.innerHTML = "<center><hr width='85%'><i><font size=-1>All attempts have been made to keep information current. Should you find otherwise, please contact the </font></i><a href='mailto:webwright@sca-gyldenholt.org'>Gyldenholt Web Design Group</a><br>Can't find something? Try the <a href='sitemap.html'>Site Map</a>. <hr width='65%'><i><font size=-1>The Standard Site Disclaimer may be found </font></i><a href='disclaimer.html'>here</a>.</center>";
}
