jQuery.extend({ _linkSsln : function() { $.getJSON("http://www.godowoncenter.com/login/sslngdw.goc?callback=?", function(data) { //alert(data.returnMsg); //alert(data.session_id); if(data.returnMsg != "OK") { //alert("[SSLN] SSO ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù. (" + data.session_id + ")"); } }); } , _showResult : function(contents) { if(contents != null) { var html = ""; html += contents; $("#div_ssln").html(html); } } , _showProgressMessage : function(type) { if(type == 1) { $("#div_ssln").html("link processing...").addClass("color_gray"); } } }); $(document).ready(function() { $._linkSsln(); });