// Browser Object Detection and Warning
// Alerts users with old browsers that they need a new browser
// to use the atlas interface.  Redirects them to the home page.
//
// June 2004 - Russell Moffitt

var browserOK = (document.getElementById) ? true : false;
if (!browserOK) {
	document.location.replace('browseralert.html');
}