////////// SSL 처리 //////////////////
var AjaxMainLayout_UserLogin_Base = window.location.toString().split("?")[0].replace(/[^\/]+$/,"");
var AjaxMainLayout_UserLogin_Url = AjaxMainLayout_UserLogin_Base+"module/default/ssl/connect.php?size=1024";
$(document).ready(function(){
   aSSL.connect(AjaxMainLayout_UserLogin_Url,FuncAjaxModule_Member_SslConnect);
});
////////// SSL 처리 /////////////////

//암호화처리를 위한 접속체크
function FuncAjaxModule_Member_SslConnect(response){
   if (response) {
      $("#timeElapsed").html(aSSL.connections['0'].timeElapsed);
      $('#'+(aSSL.connections['0'].sessionTimeout?'connected':'noConnect')).show();
   }
   $('#noConnect').show();
}
