// JavaScript script to print an under construction message
// (C) Copyright 2004, Ben Schuarmer Software, All rights reserved
//     Please e-mail any questions or comments to BenSchuarmer at yahoo.com

	// Check if(true) to display under contruction message.
	// Check if(false) to display nothing.
	if (false) {
		document.write("<p><table cellpadding=5 border=3><tr><th id=err>\n");
		document.write("Warning, this site is<h1>Under Construction</h1>\n");
		document.write("weird things may happen for the next several minutes\n");
		document.write("</th></tr></table></p>\n");
	}

