/*
	file: browser.js
	modified last: 07-06-2011
	copyright: copyright 2009-2011 Stone Dragon Press
	author: Volkhvy
	e-mail: volkhvy@stonedragonpress.com
*/

	var flgIE5 = false;
	var flgIEID = false;
	var flgMoz = false;
	var strAgent = navigator.userAgent.toLowerCase();

	function testForBrowserType() {
		if (strAgent.indexOf("msie 5") != -1) { // IExplorer 5
			flgIE5 = true;
		} else if (document.getElementById) { // IExplorer 6+ or Mozilla
			if (strAgent.indexOf("msie") != -1) { // IExplorer 6+
				flgIEID = true;
			} else if (strAgent.indexOf("gecko") != -1) { // Mozilla
				flgMoz = true;
			}
		} else {
			alert("Unsupported browser");
			flgMoz = true;
		}
		// alert(strAgent);
		// alert("flgIE5: " + flgIE5 + "\nflgIEID: " + flgIEID + "\nflgMoz: " + flgMoz);
	} // end of function

/*
	if (flgIE5) { // IExplorer 5
	} else if (flgIEID || flgMoz) { // IExplorer 6+ or Mozilla
	}

	if (parent.flgIE5) { // IExplorer 5
	} else if (parent.flgIEID || parent.flgMoz) { // IExplorer 6+ or Mozilla
	}
*/

