<!--	// Ultimate client-side JavaScript client sniff. Version 3.03	// (C) Netscape Communications 1999.  Permission granted to reuse and distribute.	// Portions adapted by brmw@eelhost.com 10 Dec 2001function brwsrSnif(){   // convert all characters to lowercase to simplify testing    var agt=navigator.userAgent.toLowerCase();	// Note: Opera and WebTV spoof Navigator.  We do strict client detection.    this.ns  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)                && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));    this.ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));    this.opera = (agt.indexOf("opera") != -1);if (document.all && ie && !opera) { document.write("Configuring for Internet Explorer");	document.location.href="index_ie.html";	}else if (document.layers && ns) { document.write("Configuring for Netscape");	document.location.href="index_ns.html";        }else if (document.getElementById && opera) { document.write("Configuring for Opera");	document.location.href="index_o.html";	}else if (document.getElementById) { document.write("Configuring for Your Browser");	document.location.href="index_o.html";	}else {  document.write("Unrecognized Configuration. Please write us at browsers@eelhost.com to let us know of this error. Thank you!");	}}// -->
