function _findID() {if(!_checkTextField($(f.findName))) {return;}if(!_checkTextField($(f.findEmail))) {return;}_submit("/actions/front/user/find-id", true);}function _afterID(_id) {if(_id.length > 0) {_alertSwitch(true, null, findIDMsg.replace("%s", _id).replace(/\n/g, "
"), "msg-bold");}else {_alertSwitch(true, null, notFoundUserMsg.replace(/\n/g, "
"), "err");}}function _findPWD() {if(!_checkTextField($(f.findIDP))) {return;}if(!_checkTextField($(f.findNameP))) {return;}if(!_checkTextField($(f.findEmailP))) {return;}_submit("/actions/front/user/find-pwd", true);}function _afterPWD(_tempPWD) {if(_tempPWD.length > 0) {_alertSwitch(true, null, findPWDMsg.replace("%s", _tempPWD).replace(/\n/g, "
"), "msg-bold");}else {_alertSwitch(true, null, notFoundUserMsg.replace(/\n/g, "
"), "err");}}win.onload = function() {$("a.sys_find_id").click(function(_e) {_findID();});$("a.sys_find_pwd").click(function(_e) {_findPWD();});};