// Date Created: 02.16.11
// Date Modified: 10.19.11

function detectBrowser() {
	if ( (navigator.appVersion.indexOf("MSIE 7")!= -1) || (navigator.appVersion.indexOf("MSIE 6")!= -1) || (navigator.appVersion.indexOf("MSIE 5")!= -1) ||	(navigator.appVersion.indexOf("MSIE 4")!= -1) ) {
		alert("You are using a version of Internet Explorer that is lower than required!" 
			+ "\nPlease upgrade to Internet Explorer 8+, or use alternative browsers."
			+"\n\n"
			+ "Note: If you see this message on Internet Explorer 8+, make "
			+ "sure that \"Compatibility View\" is turned-off.")
	}
}
