function _ajax(_obj, _url, _params, _function) {if(!_obj[0] || !_url || _url.length < 1) {_alertSwitch(true, null, "처리 중 문제가 발생했습니다.
잠시 후 다시 시도해 주세요.", "err");return;}var xmlhttp, sessionUUID;if(win.XMLHttpRequest) {xmlhttp = new XMLHttpRequest();}else {xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}xmlhttp.onreadystatechange = function() {if(xmlhttp.readyState == 4) {if(xmlhttp.status == 200) {_obj.html(_getTextForAjax(xmlhttp.responseText));_checkErrorForAjax(true);if(typeof(_function) == "function") {_function();}}else {_alertSwitch(true, null, "처리 중 문제가 발생했습니다.
잠시 후 다시 시도해 주세요.", "err");}}};sessionUUID = f.sessionUUID ? f.sessionUUID.value : "";_params = _params ? _params + "&" : "";_params += "sessionUUID=" + sessionUUID;xmlhttp.open("POST", _url, true);xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");xmlhttp.send(_params);}function _main() {var a;if(0 == 6) {a = menu.find(".main:last a:first");}else {a = menu.find(".main:first a:first");}if(!a[0]) {a = menu.find("a:first");}a.trigger("click");}function _clearReload() {clearInterval(autoInterval);isPlay = false;}function _autoReload(_obj, _function) {var i = $(_obj).find("> i");if(isPlay) {i.attr({"class": "fa fa-play"});_clearReload();}else {i.attr({"class": "fa fa-pause"});autoInterval = setInterval(_function, autoReloadSpeed);isPlay = true;}}function _content(_e, _obj, _href, _target) {var obj;obj = $(_obj);_clearReload();if(_target == "_self") {content.stop().animate({"margin-top": "240px","opacity": 0,"filter": "alpha(opacity=0)"}, animationSpeed, function() {content.empty();menu.css({"height": $(win).height() + "px"});_ajax(content, _href, "");});}else if(_target == "_blank") {}_e.stopPropagation();}