
//********************************************************//
//* JLB 2000 						 *//
//********************************************************//


//********************************************************//
//* Browser Sensing File 				 *//
//********************************************************//


//********************************************************//
//* Setup boolean variables to record browser type 	 *//
//********************************************************//
	
	var isNew = 0;
	var isIE4 = 0;
	var isNS = 0

//********************************************************//
//* Determines the browser name and version 		 *//
//********************************************************//

	var brow = navigator.appName;
	var browVer = parseInt(navigator.appVersion);

//********************************************************//
//* Reassign variable depending on the browser 		 *//
//********************************************************//

	if (parseInt(navigator.appVersion) >= 5) {
		isNew = 1;}
	else if (brow == "Netscape"){
		isNS = 1;
	}
	else if ((brow + browVer) == "Microsoft Internet Explorer"){
		isIE = 1;}

//********************************************************//
//* Redirection if browser isn't IE4 and above 		 *//
//********************************************************//

	if (isNS){
		window.location = 'netscape.htm';}




