/********************************************************************
 * BrowserCheck.js
 * Information Designs, Inc.
 *
 * See if the browser recognizes a DOM we can work with.
 *
 * Revision History:
 * 2005-02-14 - Tom von Alten
 ********************************************************************/

if (document.getElementById) {
	// we're current
} else if (document.all) {
	// we're IE
} else {
	window.location = "browser.aspx";
}

