// JavaScript Document
//Browser detect
	var detect = navigator.userAgent.toLowerCase();
	var OS,browser,thestring, finalstring, flash, showflash;
	
	if (checkIt('mac'))	OS = "MAC";
	else OS = "other";
	
	if (checkIt('msie')) browser = "IE";  
	else browser = "other";
	
	finalstring = OS + browser;

	if (finalstring=='MACIE') window.location="default2.asp";
	
function checkIt(string) {
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

// end browser detect