﻿	function BrowserCheck() {
		appname = navigator.appName;
		useragent = navigator.userAgent;
		//alert(useragent);
		if(appname == "Microsoft Internet Explorer") appname = "IE";
		IE55 = (useragent.indexOf('MSIE 5.5')>0);  //5.5 버전
		IE6 = (useragent.indexOf('MSIE 6')>0);     //6.0 버전
		IE7 = (useragent.indexOf('MSIE 7')>0);     //7.0 버전
		IE8 = (useragent.indexOf('MSIE 8')>0);     //8.0 버전
		
		if(appname=="IE" && IE55 || IE6){
			alert("본 서비스는 \nInternet Explorer 7.0 이상, FireFox 3.0, \nGoogle Crom, Safari4 이상 버전을 지원합니다.\n이하버전에서는 제대로 작동되지 않을 수 있습니다.");
			return false; //익스플로러이면서 5.5 or 6.0 버전이면...			
		} else{
			return false;
		}
	}