// function opens a popup window with copyright content in it
function showCopyright() {
	var copyrightWindow;
	copyrightWindow = window.open('copyright.htm','copyrightWindow','width=450,height=150,toolbar=no,location=no,scrollbars=no,resizable=no,status=no');
}
// this function directs qualifying users to a non-gradient Netscape compatible site
function dispatch() {
	if (window.screen.colordepth != 32)  {
		document.location.href = "ns/index.htm";
	}
}