    //XMLHTTP 관련 함수
    var xmlHttp;
    var xmlHttp2;
    
    //기본 XMLHttp 설정
    function createXMLHttpRequest() {
        if (window.ActiveXObject) {
            xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
        else if (window.XMLHttpRequest) {
            xmlHttp = new XMLHttpRequest();
        }
    }
    
    //기본 Form 에서 사용 XMLHttp 설정
    function createXMLHttpRequest2() {
        if (window.ActiveXObject) {
            xmlHttp2 = new ActiveXObject("Microsoft.XMLHTTP");
        }
        else if (window.XMLHttpRequest) {
            xmlHttp2 = new XMLHttpRequest();
        }
    }
    
    //실행 단순 URL Get 방식의 View용 함수 ex)자유게시판 태그 등.
    function LoadXMLAddrequest(ExecuteFunc,ReQuest_URL) {
        createXMLHttpRequest();
        xmlHttp.onreadystatechange = eval(ExecuteFunc)
        xmlHttp.open("GET", ReQuest_URL, true);
        xmlHttp.send(null);
    }


    //실행 단순 URL Get 방식의 View용 함수 ex)자유게시판 태그 등.
    function LoadXMLHttpRequest(ExecuteFunc,ReQuest_URL) {
        createXMLHttpRequest();
        xmlHttp.onreadystatechange = eval(ExecuteFunc)
        xmlHttp.open("GET", ReQuest_URL, true);
        xmlHttp.send(null);
    }
    
    //Form 방식의 View용 함수
    function LoadXMLHttpFormRequest(ExecuteFunc,ReQuest_URL,FormElement) {
        createXMLHttpRequest2();
        xmlHttp2.onreadystatechange = eval(ExecuteFunc);
        xmlHttp2.open("post", ReQuest_URL , true);
        xmlHttp2.setRequestHeader('Content-Type', "application/x-www-form-urlencoded");
        xmlHttp2.send(FormElement);
    }
