/*
	file: browser.js
	modified last: 10-28-2009
	copyright: copyright 2009 Minnesota Heathens
	author: Volkhvy - BigTime Interactive
	e-mail: volkhvy@stonedragonpress.com
*/

	var flgIE5 = false;
	var flgIE6_to_8 = false;
	var flgMoz = false;
	var strAgent = navigator.userAgent.toLowerCase();
	var strWarning = "Untested browser -- your browser may not display this site as intended.";

	function testForBrowserType() {
		if (strAgent.indexOf("msie 5") != -1) { // IExplorer 5
			flgIE5 = true;
		} else if (document.getElementById) { // IExplorer 6, IExplorer 7, IExplorer 8, or Mozilla
			if (strAgent.indexOf("msie 6") != -1 || strAgent.indexOf("msie 7") != -1 || strAgent.indexOf("msie 8") != -1) { // IExplorer 6, IExplorer 7, IExplorer 8
				flgIE6_to_8 = true;
			} else if (strAgent.indexOf("gecko") != -1) { // Mozilla
				flgMoz = true;
			} else {
				alert(strWarning);
			}
		} else {
			alert(strWarning);
			// window.close();
		}
		// alert("flgIE5: " + flgIE5 + "\nflgIE6_to_8: " + flgIE6_to_8 + "\nflgMoz: " + flgMoz);
	} // end of function

/*
	if (flgIE5) { // IExplorer 5
	} else if (flgIE6_to_8 || flgMoz) { // IExplorer 6, IExplorer 7, IExplorer 8, Mozilla
	}

	if (parent.flgIE5) { // IExplorer 5
	} else if (parent.flgIE6_to_8 || parent.flgMoz) { // IExplorer 6, IExplorer 7, IExplorer 8, Mozilla
	}
*/