var gstrBrowser = "";
function Browser() {
        var userAgent = navigator.userAgent;
        var MSIEIndex = userAgent.indexOf("MSIE");
	//alert(userAgent);
        if (userAgent.indexOf("Win")  != -1 &&
                userAgent.indexOf("MSIE") != -1 &&
                userAgent.substring((MSIEIndex + 5),(MSIEIndex + 6)) > 4) {
//		if (userAgent.substring((MSIEIndex + 5),(MSIEIndex + 6)) < 6)
                	gstrBrowser = "IE";
//		else
//                	gstrBrowser = "IE6";
	}
	else {
                gstrBrowser = "NotIE";
	}
	return;
}