function checkBrowser() {
	if (navigator.userAgent.indexOf("MSIE") != -1) {
		var index = navigator.userAgent.indexOf("MSIE");
		var version=parseFloat(navigator.userAgent.substring(index+5));
		if (version<7) {
			window.location="notsupportedIE.html";
		}
	}
}
