opensoma 0.4.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/dist/package.json +1 -1
  2. package/dist/src/client.d.ts +7 -1
  3. package/dist/src/client.d.ts.map +1 -1
  4. package/dist/src/client.js +13 -11
  5. package/dist/src/client.js.map +1 -1
  6. package/dist/src/commands/auth.d.ts +1 -1
  7. package/dist/src/commands/auth.d.ts.map +1 -1
  8. package/dist/src/commands/auth.js +94 -52
  9. package/dist/src/commands/auth.js.map +1 -1
  10. package/dist/src/constants.d.ts +40 -0
  11. package/dist/src/constants.d.ts.map +1 -1
  12. package/dist/src/constants.js +42 -0
  13. package/dist/src/constants.js.map +1 -1
  14. package/dist/src/formatters.d.ts.map +1 -1
  15. package/dist/src/formatters.js +42 -16
  16. package/dist/src/formatters.js.map +1 -1
  17. package/dist/src/index.d.ts +3 -0
  18. package/dist/src/index.d.ts.map +1 -1
  19. package/dist/src/index.js +2 -0
  20. package/dist/src/index.js.map +1 -1
  21. package/dist/src/shared/utils/swmaestro.d.ts.map +1 -1
  22. package/dist/src/shared/utils/swmaestro.js +1 -5
  23. package/dist/src/shared/utils/swmaestro.js.map +1 -1
  24. package/dist/src/shared/utils/toz.d.ts +23 -0
  25. package/dist/src/shared/utils/toz.d.ts.map +1 -0
  26. package/dist/src/shared/utils/toz.js +72 -0
  27. package/dist/src/shared/utils/toz.js.map +1 -0
  28. package/dist/src/token-extractor.d.ts +9 -1
  29. package/dist/src/token-extractor.d.ts.map +1 -1
  30. package/dist/src/token-extractor.js +54 -10
  31. package/dist/src/token-extractor.js.map +1 -1
  32. package/dist/src/toz-formatters.d.ts +9 -0
  33. package/dist/src/toz-formatters.d.ts.map +1 -0
  34. package/dist/src/toz-formatters.js +151 -0
  35. package/dist/src/toz-formatters.js.map +1 -0
  36. package/dist/src/toz-http.d.ts +27 -0
  37. package/dist/src/toz-http.d.ts.map +1 -0
  38. package/dist/src/toz-http.js +154 -0
  39. package/dist/src/toz-http.js.map +1 -0
  40. package/dist/src/types.d.ts +52 -0
  41. package/dist/src/types.d.ts.map +1 -1
  42. package/dist/src/types.js +46 -0
  43. package/dist/src/types.js.map +1 -1
  44. package/package.json +1 -1
  45. package/src/__fixtures__/toz/toz_all_branches.json +211 -0
  46. package/src/__fixtures__/toz/toz_booking.html +2190 -0
  47. package/src/__fixtures__/toz/toz_boothes.json +59 -0
  48. package/src/__fixtures__/toz/toz_duration.json +25 -0
  49. package/src/__fixtures__/toz/toz_mypage_response.html +388 -0
  50. package/src/__fixtures__/toz/toz_page.html +211 -0
  51. package/src/client.test.ts +135 -117
  52. package/src/client.ts +16 -12
  53. package/src/commands/auth.test.ts +7 -7
  54. package/src/commands/auth.ts +107 -50
  55. package/src/commands/helpers.test.ts +8 -8
  56. package/src/commands/report.test.ts +7 -7
  57. package/src/constants.ts +50 -0
  58. package/src/credential-manager.test.ts +5 -5
  59. package/src/formatters.test.ts +22 -22
  60. package/src/formatters.ts +44 -16
  61. package/src/http.test.ts +37 -37
  62. package/src/index.ts +3 -0
  63. package/src/shared/utils/mentoring-params.test.ts +16 -16
  64. package/src/shared/utils/swmaestro.test.ts +87 -8
  65. package/src/shared/utils/swmaestro.ts +1 -6
  66. package/src/shared/utils/toz.test.ts +138 -0
  67. package/src/shared/utils/toz.ts +100 -0
  68. package/src/token-extractor.test.ts +40 -15
  69. package/src/token-extractor.ts +65 -13
  70. package/src/toz-formatters.test.ts +197 -0
  71. package/src/toz-formatters.ts +211 -0
  72. package/src/toz-http.test.ts +157 -0
  73. package/src/toz-http.ts +188 -0
  74. package/src/types.test.ts +220 -204
  75. package/src/types.ts +58 -0
@@ -0,0 +1,2190 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5
+ <title>토즈</title>
6
+
7
+ <script type="text/javascript" src="/js/jquery-1.4.4.min.js"></script>
8
+ <script type="text/javascript" src="/js/jquery-ui-1.8.9.custom.min.js"></script>
9
+ <script type="text/javascript" src="/js/jquery.ui.datepicker-ko.js"></script>
10
+ <link type="text/css" href="/css/blitzer/jquery-ui-1.8.13.custom.css" rel="stylesheet" />
11
+ <link type="text/css" href="/css/partnerReservation.css" rel="stylesheet" />
12
+ <!-- <script type="text/javascript" src="/js/jquery-1.8.2.js"></script> -->
13
+ <script type="text/javascript">
14
+ var boothProfileUrl = new Array()
15
+
16
+ $(document).ready(function () {
17
+ $('input[name=branch_id]').closest('label').css({ cursor: 'pointer' })
18
+ $('input#branch_id_all').click(function () {
19
+ let isCheck = $(this).is(':checked')
20
+ $('input[name=branch_id]').attr('checked', isCheck)
21
+ })
22
+ $('input[name=branch_id]').click(function () {
23
+ let branchIdLen = $('input[name=branch_id]').length
24
+ let branchIdCheckLen = $('input[name=branch_id]:checked').length
25
+ $('input#branch_id_all').attr('checked', branchIdLen === branchIdCheckLen)
26
+ })
27
+
28
+ $.datepicker.setDefaults($.datepicker.regional['ko'])
29
+ $('#basedate').datepicker({
30
+ minDate: 0,
31
+ maxDate: '+2M',
32
+ showOn: 'button',
33
+ buttonImage: '/images/old/icon_day.gif',
34
+ buttonImageOnly: true,
35
+ onSelect: function (dateText, inst) {
36
+ if (dateText != false) {
37
+ checkDurationTime(true, true)
38
+ }
39
+ },
40
+ })
41
+ $('#basedate').datepicker('option', 'dateFormat', 'yy-mm-dd')
42
+ $('#basedate').datepicker('option', 'showButtonPanel', true)
43
+
44
+ $('#basedate').val('')
45
+ checkDurationTime(true, true)
46
+
47
+ setStep(1)
48
+ })
49
+
50
+ //
51
+ var startTimeStamp
52
+ var timerId
53
+ function checkTimer() {
54
+ if ($.now() - startTimeStamp > 300 * 1000) {
55
+ alert('만료시간이 지났습니다. 다시 시도해 주세요.')
56
+ $.ajax({
57
+ type: 'POST',
58
+ url: './ajaxDestroyReservation.htm',
59
+ success: function (res) {
60
+ location.href = './booking.htm?key=&projectSeq=&addedInfo=&tozApplyType='
61
+ },
62
+ error: function (res) {
63
+ alert(res.responseText)
64
+ location.href = './booking.htm?key=&projectSeq=&addedInfo=&tozApplyType='
65
+ },
66
+ })
67
+ }
68
+ if (timerId) self.clearInterval(timerId)
69
+
70
+ //
71
+ timerId = self.setInterval('checkTimer()', 10 * 1000) // 10 sec
72
+ }
73
+ function checkMeeting_id(meeting_id) {
74
+ var frm4 = document.frmReservation_4
75
+ if (meeting_id == '새모임') {
76
+ $('#idNewMeetingName').show()
77
+ frm4.newMeetingName.value = ''
78
+ } else {
79
+ $('#idNewMeetingName').hide()
80
+ frm4.newMeetingName.value = ''
81
+ }
82
+ }
83
+ function checkEmail2(email2Value) {
84
+ var frm4 = document.frmReservation_4
85
+ if (email2Value == '직접입력') {
86
+ $('#idEmail3').show()
87
+ frm4.email3.value = ''
88
+ } else {
89
+ $('#idEmail3').hide()
90
+ frm4.email3.value = ''
91
+ }
92
+ }
93
+ function startCheckTimer() {
94
+ startTimeStamp = $.now()
95
+ checkTimer()
96
+ }
97
+ function reload() {
98
+ if (confirm('기존 입력된 내용이 초기화됩니다. 진행하시겠습니까?')) {
99
+ location.href = './booking.htm?key=&projectSeq=&addedInfo=&tozApplyType='
100
+ }
101
+ }
102
+ function checkEndTime() {
103
+ var frm = document.frmReservation_1
104
+
105
+ //
106
+ $.ajax({
107
+ type: 'POST',
108
+ url: './ajaxCheckEndTime.htm',
109
+ data: {
110
+ hour: frm.starttime1.value,
111
+ minute: frm.starttime2.value,
112
+ durationTime: frm.durationTime.value,
113
+ },
114
+ success: function (res) {
115
+ if (res.resultMsg != false) {
116
+ $('#expectLeavetime').html('(모임 종료:' + res.resultMsg + ')')
117
+ }
118
+ },
119
+ error: function (res) {
120
+ //alert( res.responseText );
121
+ },
122
+ })
123
+ }
124
+ function hpVerify() {
125
+ var frm4 = document.frmReservation_4
126
+ if (frm4.phone1.value == false) {
127
+ alert('인증번호를 받으실 휴대폰 번호를 입력해 주세요.')
128
+ frm4.phone1.focus()
129
+ return
130
+ } else if (frm4.phone2.value == false) {
131
+ alert('인증번호를 받으실 휴대폰 번호를 입력해 주세요.')
132
+ frm4.phone2.focus()
133
+ return
134
+ } else if (frm4.phone3.value == false) {
135
+ alert('인증번호를 받으실 휴대폰 번호를 입력해 주세요.')
136
+ frm4.phone3.focus()
137
+ return
138
+ }
139
+
140
+ alert('인증번호가 발송되었습니다.')
141
+ $.ajax({
142
+ type: 'POST',
143
+ url: './ajaxHpVerify.htm',
144
+ data: {
145
+ phone1: frm4.phone1.value,
146
+ phone2: frm4.phone2.value,
147
+ phone3: frm4.phone3.value,
148
+ },
149
+ success: function (res) {
150
+ if (res != 'SUCCESS') {
151
+ alert('인증번호를 발송하지 못했습니다. 휴대폰 번호를 확인해 주세요.')
152
+ }
153
+ },
154
+ error: function (res) {
155
+ //alert( res.responseText );
156
+ },
157
+ })
158
+ }
159
+ function checkDurationTime(isChangeDate, isCheckEndtime) {
160
+ var frm = document.frmReservation_1
161
+ if (isChangeDate) {
162
+ frm.starttime2.selectedIndex = 0
163
+ frm.durationTime.selectedIndex = 0
164
+ }
165
+
166
+ //
167
+ $.ajax({
168
+ type: 'GET',
169
+ url: './ajaxCheckDurationTime.htm',
170
+ data: {
171
+ basedate: $('#basedate').val(),
172
+ hour: frm.starttime1.value,
173
+ minute: frm.starttime2.value,
174
+ },
175
+ success: function (res) {
176
+ if (res != false) {
177
+ if (isChangeDate) {
178
+ for (var i = frm.starttime1.options.length; i >= 0; i--) {
179
+ frm.starttime1.options[i] = null
180
+ }
181
+
182
+ if (res[0].calendarWeek == 'SATURDAY') {
183
+ for (var i = 9; i <= 20; i++) {
184
+ if (i < 10) {
185
+ var objOption = new Option(i, '0' + i)
186
+ frm.starttime1.options.add(objOption)
187
+ } else {
188
+ var objOption = new Option(i, i)
189
+ frm.starttime1.options.add(objOption)
190
+ }
191
+ }
192
+ } else if (res[0].calendarWeek == 'SUNDAY') {
193
+ for (var i = 9; i <= 19; i++) {
194
+ if (i < 10) {
195
+ var objOption = new Option(i, '0' + i)
196
+ frm.starttime1.options.add(objOption)
197
+ } else {
198
+ var objOption = new Option(i, i)
199
+ frm.starttime1.options.add(objOption)
200
+ }
201
+ }
202
+ } else {
203
+ for (var i = 9; i <= 21; i++) {
204
+ if (i < 10) {
205
+ var objOption = new Option(i, '0' + i)
206
+ frm.starttime1.options.add(objOption)
207
+ } else {
208
+ var objOption = new Option(i, i)
209
+ frm.starttime1.options.add(objOption)
210
+ }
211
+ }
212
+ }
213
+ }
214
+
215
+ $(frm.durationTime).val('')
216
+ for (var i = frm.durationTime.options.length; i >= 0; i--) {
217
+ frm.durationTime.options[i] = null
218
+ }
219
+ for (var i = 0; i < res.length; i++) {
220
+ var objOption = new Option(res[i].value, res[i].key)
221
+ if (
222
+ ('fkii3' === 'kibwa' && parseInt(res[i].key) > 400) ||
223
+ ('fkii3' === 'fkii3' && parseInt(res[i].key) > 300)
224
+ ) {
225
+ // 이브와 4시간까지만 노출
226
+ // SW마에스트로 3시간까지만 노출
227
+ continue
228
+ }
229
+ frm.durationTime.options.add(objOption)
230
+ }
231
+
232
+ if (isChangeDate) {
233
+ $(frm.durationTime).val('')
234
+ }
235
+
236
+ if (isCheckEndtime) {
237
+ checkEndTime()
238
+ }
239
+ checkBranchHoliday()
240
+ }
241
+ },
242
+ error: function (res) {
243
+ alert(res.responseText)
244
+ },
245
+ })
246
+ }
247
+ function checkBranchHoliday() {
248
+ var frm = document.frmReservation_1
249
+ if ($(frm.basedate).val() == false) {
250
+ return
251
+ } else if ('2026-04-17' > $('#basedate').val()) {
252
+ alert('지난 날짜는 선택할 수 없습니다.')
253
+ $('#basedate').val('2026-04-17')
254
+ return
255
+ }
256
+
257
+ //
258
+ $.ajax({
259
+ type: 'GET',
260
+ url: './ajaxCheckBranchHoliday.htm',
261
+ data: {
262
+ basedate: $('#basedate').val(),
263
+ hour: frm.starttime1.value,
264
+ minute: frm.starttime2.value,
265
+ durationTime: frm.durationTime.value,
266
+ },
267
+ success: function (res) {
268
+ $('input:checkbox[name=branch_id]').each(function () {
269
+ $(this).attr('disabled', false)
270
+ })
271
+ if (res != null && res.length > 0) {
272
+ for (var i = 0; i < res.length; i++) {
273
+ $(frm.branch_id)
274
+ .filter('input[value=' + res[i] + ']')
275
+ .removeAttr('checked')
276
+ $(frm.branch_id)
277
+ .filter('input[value=' + res[i] + ']')
278
+ .attr('disabled', true)
279
+ }
280
+ }
281
+ },
282
+ error: function (res) {
283
+ //alert( res.responseText );
284
+ },
285
+ })
286
+ }
287
+ function setStep(step) {
288
+ if (step == 1) {
289
+ $('#idBoothSearch').show()
290
+ //$("#idBoothProfileUrl_on").hide();
291
+ //$("#idBoothProfileUrl_off").show();
292
+ $('#step1').show()
293
+ setStep1Disable(false)
294
+ $('#step2').show()
295
+ setStep2Disable(true)
296
+ $('#step3').show()
297
+ setStep3Disable(true)
298
+ $('#step4').hide()
299
+ $('#step5').hide()
300
+ if (timerId) self.clearInterval(timerId)
301
+ } else if (step == 2) {
302
+ $('#idBoothSearch').show()
303
+ //$("#idBoothProfileUrl_on").show();
304
+ //$("#idBoothProfileUrl_off").hide();
305
+ $('#step1').show()
306
+ setStep1Disable(true)
307
+ $('#step2').show()
308
+ setStep2Disable(false)
309
+ $('#step3').show()
310
+ setStep3Disable(true)
311
+ $('#step4').hide()
312
+ $('#step5').hide()
313
+ } else if (step == 3) {
314
+ $('#idBoothSearch').show()
315
+ //$("#idBoothProfileUrl_on").hide();
316
+ //$("#idBoothProfileUrl_off").show();
317
+ $('#step1').show()
318
+ setStep1Disable(true)
319
+ $('#step2').show()
320
+ setStep2Disable(true)
321
+ $('#step3').show()
322
+ setStep3Disable(false)
323
+ $('#step4').hide()
324
+ $('#step5').hide()
325
+ } else if (step == 4) {
326
+ $('#idBoothSearch').hide()
327
+ //$("#idBoothProfileUrl_on").hide();
328
+ //$("#idBoothProfileUrl_off").show();
329
+ $('#step1').hide()
330
+ setStep1Disable(false)
331
+ $('#step2').hide()
332
+ setStep2Disable(false)
333
+ $('#step3').hide()
334
+ setStep3Disable(false)
335
+ $('#step4').show()
336
+ $('#step5').hide()
337
+ } else if (step == 5) {
338
+ $('#idBoothSearch').hide()
339
+ //$("#idBoothProfileUrl_on").hide();
340
+ //$("#idBoothProfileUrl_off").show();
341
+ $('#step1').hide()
342
+ setStep1Disable(false)
343
+ $('#step2').hide()
344
+ setStep2Disable(false)
345
+ $('#step3').hide()
346
+ setStep3Disable(false)
347
+ $('#step4').hide()
348
+ $('#step5').show()
349
+
350
+ $('#idReloadBtn').hide()
351
+ if (timerId) self.clearInterval(timerId)
352
+ }
353
+ }
354
+ function setStep1Disable(disable) {
355
+ var frm = document.frmReservation_1
356
+ frm.basedate.disabled = disable
357
+ frm.starttime1.disabled = disable
358
+ frm.starttime2.disabled = disable
359
+ frm.durationTime.disabled = disable
360
+
361
+ frm.userCount.disabled = disable
362
+ $('input#branch_id_all').attr('disabled', disable)
363
+ $(frm.branch_id).attr('disabled', disable)
364
+
365
+ if (disable) {
366
+ $('#tdStep1_1').css('background', '#FDFDFD')
367
+ $('#tdStep1_1').html('<img src="/images/old/basedate_off.png">')
368
+ $('#tdStep1_2').css('background', '#FDFDFD')
369
+ $('#tdStep1_2').html('<img src="/images/old/time_off.png">')
370
+ $('#tdStep1_3').css('background', '#FDFDFD')
371
+ $('#tdStep1_3').html('<img src="/images/old/userCount_off.png">')
372
+ $('#tdStep1_4').css('background', '#FDFDFD')
373
+ $('#tdStep1_4').html('<img src="/images/old/branch_off.png">')
374
+ $('#btnStep1_on').hide()
375
+ $('#btnStep1_waiting').hide()
376
+ $('#btnStep1_off').show()
377
+ } else {
378
+ $('#tdStep1_1').css('background', '#F5F5F5')
379
+ $('#tdStep1_1').html('<img src="/images/old/basedate.png">')
380
+ $('#tdStep1_2').css('background', '#F5F5F5')
381
+ $('#tdStep1_2').html('<img src="/images/old/time.png">')
382
+ $('#tdStep1_3').css('background', '#F5F5F5')
383
+ $('#tdStep1_3').html('<img src="/images/old/userCount.png">')
384
+ $('#tdStep1_4').css('background', '#F5F5F5')
385
+ $('#tdStep1_4').html('<img src="/images/old/branch.png">')
386
+ $('#btnStep1_on').show()
387
+ $('#btnStep1_waiting').hide()
388
+ $('#btnStep1_off').hide()
389
+ }
390
+ }
391
+ function setStep2Disable(disable) {
392
+ var frm = document.frmReservation_2
393
+ frm.booth_id.disabled = disable
394
+ if (disable) {
395
+ $('#tdStep2').css('background', '#FDFDFD')
396
+ $('#tdStep2').html('<img src="/images/old/booth_off.png">')
397
+ $('#btnStep2_on').hide()
398
+ $('#btnStep2_waiting').hide()
399
+ $('#btnStep2_off').show()
400
+ } else {
401
+ $('#tdStep2').css('background', '#F5F5F5')
402
+ $('#tdStep2').html('<img src="/images/old/booth.png">')
403
+ $('#btnStep2_on').show()
404
+ $('#btnStep2_waiting').hide()
405
+ $('#btnStep2_off').hide()
406
+ }
407
+ }
408
+ function setStep3Disable(disable) {
409
+ var frm = document.frmReservation_3
410
+ frm.equipmentNotebook.disabled = disable
411
+ frm.equipmentProjector.disabled = disable
412
+ frm.equipmentMonitor.disabled = disable
413
+ frm.equipmentPlayer.disabled = disable
414
+ frm.equipmentSpeaker.disabled = disable
415
+ frm.notebookCnt.disabled = disable
416
+ frm.projectorCnt.disabled = disable
417
+ frm.monitorCnt.disabled = disable
418
+ frm.playerCnt.disabled = disable
419
+ frm.speakerCnt.disabled = disable
420
+ if (disable) {
421
+ $('#tdStep3').css('background', '#FDFDFD')
422
+ $('#tdStep3').html('<img src="/images/old/equipment_off.png">')
423
+ $('#btnStep3_on').hide()
424
+ $('#btnStep3_waiting').hide()
425
+ $('#btnStep3_off').show()
426
+ } else {
427
+ $('#tdStep3').css('background', '#F5F5F5')
428
+ $('#tdStep3').html('<img src="/images/old/equipment.png">')
429
+ $('#btnStep3_on').show()
430
+ $('#btnStep3_waiting').hide()
431
+ $('#btnStep3_off').hide()
432
+ }
433
+ }
434
+ function doReservationSearch() {
435
+ var frm = document.frmReservation_1
436
+
437
+ var branchIds = new Array()
438
+ var strBranchIds = ''
439
+ $('input:checkbox[name=branch_id]').each(function () {
440
+ if (this.checked) {
441
+ branchIds[branchIds.length] = $(this).val()
442
+ strBranchIds += $(this).val() + ','
443
+ }
444
+ })
445
+
446
+ if ($('#basedate').val() == false) {
447
+ alert('모임일을 선택해 주세요.')
448
+ } else if (frm.starttime1.value == false) {
449
+ alert('모심시간을 선택해 주세요.')
450
+ } else if (frm.durationTime.value == false) {
451
+ alert('이용 시간을 선택해 주세요.')
452
+ } else if (frm.userCount.value == false) {
453
+ alert('모임인원을 입력해 주세요.')
454
+ } else if (branchIds.length < 1) {
455
+ alert('예약할 지점을 하나 이상 선택해 주세요.')
456
+ } else if (frm.userCount.value >= 16 && false == true) {
457
+ alert('16인 이상 모임을 하실 수 없는 고객입니다.')
458
+ } else {
459
+ $('#btnStep1_on').hide()
460
+ $('#btnStep1_waiting').show()
461
+
462
+ let userCount = frm.userCount.value
463
+ $.ajax({
464
+ type: 'POST',
465
+ url: './ajaxGetEnableBoothes.htm',
466
+ data: {
467
+ basedate: $(frm.basedate).val(),
468
+ starttime: frm.starttime1.value + '' + frm.starttime2.value,
469
+ durationTime: frm.durationTime.value,
470
+ userCount: userCount,
471
+ branchIds: strBranchIds,
472
+ },
473
+ success: function (res) {
474
+ setStep(2)
475
+ if (res[0].resultMsg == 'SUCCESS') {
476
+ boothProfileUrl = new Array()
477
+ var frm2 = document.frmReservation_2
478
+ for (var i = 0; i < res.length; i++) {
479
+ if (Number(res[i].minUseUserCount) > 15) {
480
+ var objOption = new Option(
481
+ '[대형부스] ' +
482
+ res[i].branchName +
483
+ ' ' +
484
+ res[i].boothGroupName +
485
+ ' ' +
486
+ res[i].minUseUserCount +
487
+ '~' +
488
+ res[i].enableMaxUserCount +
489
+ '인',
490
+ res[i].id,
491
+ )
492
+ frm2.booth_id.options.add(objOption)
493
+ } else {
494
+ var objOption = new Option(
495
+ res[i].branchName +
496
+ ' ' +
497
+ res[i].boothGroupName +
498
+ ' ' +
499
+ res[i].minUseUserCount +
500
+ '~' +
501
+ res[i].enableMaxUserCount +
502
+ '인',
503
+ res[i].id,
504
+ )
505
+ frm2.booth_id.options.add(objOption)
506
+ }
507
+ boothProfileUrl.push(res[i].boothGroupUrl)
508
+ }
509
+ } else {
510
+ setStep(1)
511
+ alert(res[0].resultMsg)
512
+ $('#btnStep1_on').show()
513
+ $('#btnStep1_waiting').hide()
514
+ }
515
+ },
516
+ error: function (res) {
517
+ $('#btnStep1_on').show()
518
+ $('#btnStep1_waiting').hide()
519
+ //alert( res.reseponseText );
520
+ },
521
+ })
522
+ }
523
+ }
524
+ function doPreSearch() {
525
+ $('#btnStep2_on').hide()
526
+ $('#btnStep2_waiting').show()
527
+ var frm2 = document.frmReservation_2
528
+ frm2.branchName.value = ''
529
+ frm2.boothName.value = ''
530
+ $(frm2.booth_id).val('')
531
+ for (var i = frm2.booth_id.options.length; i >= 0; i--) {
532
+ frm2.booth_id.options[i] = null
533
+ }
534
+ setStep(1)
535
+ }
536
+ function doReservationBooth() {
537
+ var frm1 = document.frmReservation_1
538
+ var frm2 = document.frmReservation_2
539
+ var frm3 = document.frmReservation_3
540
+ var frm4 = document.frmReservation_4
541
+ if (frm2.booth_id.value == false) {
542
+ alert('예약하실 부스를 선택해 주세요.')
543
+ frm2.booth_id.focus()
544
+ } else {
545
+ $('#btnStep2_on').hide()
546
+ $('#btnStep2_waiting').show()
547
+
548
+ for (var i = frm3.notebookCnt.options.length; i >= 0; i--) {
549
+ frm3.notebookCnt.options[i] = null
550
+ }
551
+ for (var i = frm3.projectorCnt.options.length; i >= 0; i--) {
552
+ frm3.projectorCnt.options[i] = null
553
+ }
554
+ for (var i = frm3.monitorCnt.options.length; i >= 0; i--) {
555
+ frm3.monitorCnt.options[i] = null
556
+ }
557
+ for (var i = frm3.playerCnt.options.length; i >= 0; i--) {
558
+ frm3.playerCnt.options[i] = null
559
+ }
560
+ for (var i = frm3.speakerCnt.options.length; i >= 0; i--) {
561
+ frm3.speakerCnt.options[i] = null
562
+ }
563
+
564
+ $.ajax({
565
+ type: 'POST',
566
+ url: './ajaxReservationBooth.htm',
567
+ data: {
568
+ basedate: $(frm1.basedate).val(),
569
+ starttime: frm1.starttime1.value + '' + frm1.starttime2.value,
570
+ durationTime: frm1.durationTime.value,
571
+ userCount: frm1.userCount.value,
572
+ booth_id: frm2.booth_id.value,
573
+ },
574
+ success: function (res) {
575
+ if (res.result == 'SUCCESS') {
576
+ frm2.branchName.value = res.branchName
577
+ frm2.boothName.value = res.boothGroupName
578
+ frm2.boothIsLarge.value = res.boothIsLarge
579
+ if (res.boothIsLarge == true) {
580
+ frm4.isAgree.checked = false
581
+ frm4.isAgree.disabled = false
582
+ $('#imgIsAgree_on').show()
583
+ $('#imgIsAgree_off').hide()
584
+ $('#largeReservInfo').css('color', '#666666')
585
+ $('#largeReservInfo2').css('color', '#666666')
586
+ } else {
587
+ frm4.isAgree.checked = false
588
+ frm4.isAgree.disabled = true
589
+ $('#imgIsAgree_on').hide()
590
+ $('#imgIsAgree_off').show()
591
+ $('#largeReservInfo').css('color', '#dddddd')
592
+ $('#largeReservInfo2').css('color', '#dddddd')
593
+ }
594
+ $('#branchTel').html(res.branchTel)
595
+ startCheckTimer() // timer start
596
+ document.frmReservation_4.reservationId.value = res.resultMsg
597
+
598
+ //
599
+ setStep(3) // 여기에서 처리해야함
600
+ setStep3Disable(true)
601
+ $('#tdStep3').css('background', '#F5F5F5')
602
+ $('#tdStep3').html('<img src="/images/old/equipment.png">')
603
+ $('#btnStep3_on').show()
604
+ $('#btnStep3_off').hide()
605
+
606
+ var notebookCnt = 1
607
+ var projectorCnt = 1
608
+ var monitorCnt = 1
609
+ var playerCnt = 1
610
+ var speakerCnt = 1
611
+ for (var i = 0; i < res.entitys.length; i++) {
612
+ if (res.entitys[i].type == 'BRANCH') {
613
+ if (res.entitys[i].equipType == 'notebook') {
614
+ $(frm3.equipmentNotebook).removeAttr('disabled')
615
+ $(frm3.notebookCnt).removeAttr('disabled')
616
+ frm3.equipmentNotebook.value = res.entitys[i].type + '_' + res.entitys[i].id
617
+
618
+ if ('fkii3' == 'lgcns') {
619
+ if (notebookCnt <= 1) {
620
+ frm3.notebookCnt.options.add(new Option(notebookCnt, notebookCnt))
621
+ notebookCnt += 1
622
+ }
623
+ } else {
624
+ frm3.notebookCnt.options.add(new Option(notebookCnt, notebookCnt))
625
+ notebookCnt += 1
626
+ }
627
+ } else if (res.entitys[i].equipType == 'projector') {
628
+ $(frm3.equipmentProjector).removeAttr('disabled')
629
+ $(frm3.projectorCnt).removeAttr('disabled')
630
+ frm3.equipmentProjector.value = res.entitys[i].type + '_' + res.entitys[i].id
631
+
632
+ if ('fkii3' == 'lgcns') {
633
+ if (projectorCnt <= 1) {
634
+ frm3.projectorCnt.options.add(new Option(projectorCnt, projectorCnt))
635
+ projectorCnt += 1
636
+ }
637
+ } else {
638
+ frm3.projectorCnt.options.add(new Option(projectorCnt, projectorCnt))
639
+ projectorCnt += 1
640
+ }
641
+ } else if (res.entitys[i].equipType == 'monitor') {
642
+ $(frm3.equipmentMonitor).removeAttr('disabled')
643
+ $(frm3.monitorCnt).removeAttr('disabled')
644
+ frm3.equipmentMonitor.value = res.entitys[i].type + '_' + res.entitys[i].id
645
+
646
+ if ('fkii3' == 'lgcns') {
647
+ if (monitorCnt <= 1) {
648
+ frm3.monitorCnt.options.add(new Option(monitorCnt, monitorCnt))
649
+ monitorCnt += 1
650
+ }
651
+ } else {
652
+ frm3.monitorCnt.options.add(new Option(monitorCnt, monitorCnt))
653
+ monitorCnt += 1
654
+ }
655
+ } else if (res.entitys[i].equipType == 'player') {
656
+ $(frm3.equipmentPlayer).removeAttr('disabled')
657
+ $(frm3.playerCnt).removeAttr('disabled')
658
+ frm3.equipmentPlayer.value = res.entitys[i].type + '_' + res.entitys[i].id
659
+
660
+ if ('fkii3' == 'lgcns') {
661
+ if (playerCnt <= 1) {
662
+ frm3.playerCnt.options.add(new Option(playerCnt, playerCnt))
663
+ playerCnt += 1
664
+ }
665
+ } else {
666
+ frm3.playerCnt.options.add(new Option(playerCnt, playerCnt))
667
+ playerCnt += 1
668
+ }
669
+ } else if (res.entitys[i].equipType == 'speaker') {
670
+ $(frm3.equipmentSpeaker).removeAttr('disabled')
671
+ $(frm3.speakerCnt).removeAttr('disabled')
672
+ frm3.equipmentSpeaker.value = res.entitys[i].type + '_' + res.entitys[i].id
673
+
674
+ if ('fkii3' == 'lgcns') {
675
+ if (speakerCnt <= 1) {
676
+ frm3.speakerCnt.options.add(new Option(speakerCnt, speakerCnt))
677
+ speakerCnt += 1
678
+ }
679
+ } else {
680
+ frm3.speakerCnt.options.add(new Option(speakerCnt, speakerCnt))
681
+ speakerCnt += 1
682
+ }
683
+ }
684
+ }
685
+ }
686
+ for (var i = 0; i < res.entitys.length; i++) {
687
+ if (res.entitys[i].type == 'BOOTH') {
688
+ if (res.entitys[i].equipType == 'notebook') {
689
+ $(frm3.equipmentNotebook).removeAttr('disabled')
690
+ $(frm3.notebookCnt).removeAttr('disabled')
691
+ frm3.equipmentNotebook.value = res.entitys[i].type + '_' + res.entitys[i].id
692
+
693
+ if ('fkii3' == 'lgcns') {
694
+ if (notebookCnt <= 1) {
695
+ frm3.notebookCnt.options.add(new Option(notebookCnt, notebookCnt))
696
+ notebookCnt += 1
697
+ }
698
+ } else {
699
+ frm3.notebookCnt.options.add(new Option(notebookCnt, notebookCnt))
700
+ notebookCnt += 1
701
+ }
702
+ } else if (res.entitys[i].equipType == 'projector') {
703
+ $(frm3.equipmentProjector).removeAttr('disabled')
704
+ $(frm3.projectorCnt).removeAttr('disabled')
705
+ frm3.equipmentProjector.value = res.entitys[i].type + '_' + res.entitys[i].id
706
+
707
+ if ('fkii3' == 'lgcns') {
708
+ if (projectorCnt <= 1) {
709
+ frm3.projectorCnt.options.add(new Option(projectorCnt, projectorCnt))
710
+ projectorCnt += 1
711
+ }
712
+ } else {
713
+ frm3.projectorCnt.options.add(new Option(projectorCnt, projectorCnt))
714
+ projectorCnt += 1
715
+ }
716
+ } else if (res.entitys[i].equipType == 'monitor') {
717
+ $(frm3.equipmentMonitor).removeAttr('disabled')
718
+ $(frm3.monitorCnt).removeAttr('disabled')
719
+ frm3.equipmentMonitor.value = res.entitys[i].type + '_' + res.entitys[i].id
720
+
721
+ if ('fkii3' == 'lgcns') {
722
+ if (monitorCnt <= 1) {
723
+ frm3.monitorCnt.options.add(new Option(monitorCnt, monitorCnt))
724
+ monitorCnt += 1
725
+ }
726
+ } else {
727
+ frm3.monitorCnt.options.add(new Option(monitorCnt, monitorCnt))
728
+ monitorCnt += 1
729
+ }
730
+ } else if (res.entitys[i].equipType == 'player') {
731
+ $(frm3.equipmentPlayer).removeAttr('disabled')
732
+ $(frm3.playerCnt).removeAttr('disabled')
733
+ frm3.equipmentPlayer.value = res.entitys[i].type + '_' + res.entitys[i].id
734
+
735
+ if ('fkii3' == 'lgcns') {
736
+ if (playerCnt <= 1) {
737
+ frm3.playerCnt.options.add(new Option(playerCnt, playerCnt))
738
+ playerCnt += 1
739
+ }
740
+ } else {
741
+ frm3.playerCnt.options.add(new Option(playerCnt, playerCnt))
742
+ playerCnt += 1
743
+ }
744
+ } else if (res.entitys[i].equipType == 'speaker') {
745
+ $(frm3.equipmentSpeaker).removeAttr('disabled')
746
+ $(frm3.speakerCnt).removeAttr('disabled')
747
+ frm3.equipmentSpeaker.value = res.entitys[i].type + '_' + res.entitys[i].id
748
+
749
+ if ('fkii3' == 'lgcns') {
750
+ if (speakerCnt <= 1) {
751
+ frm3.speakerCnt.options.add(new Option(speakerCnt, speakerCnt))
752
+ speakerCnt += 1
753
+ }
754
+ } else {
755
+ frm3.speakerCnt.options.add(new Option(speakerCnt, speakerCnt))
756
+ speakerCnt += 1
757
+ }
758
+ }
759
+ }
760
+ }
761
+ } else {
762
+ $('#btnStep2_on').show()
763
+ $('#btnStep2_waiting').hide()
764
+ alert(res.resultMsg)
765
+ }
766
+ },
767
+ error: function (res) {
768
+ $('#btnStep2_on').show()
769
+ $('#btnStep2_waiting').hide()
770
+ alert(res.responseText)
771
+ },
772
+ })
773
+ }
774
+ }
775
+ function doPreBooth() {
776
+ $('#btnStep3_on').hide()
777
+ $('#btnStep3_waiting').show()
778
+ $.ajax({
779
+ type: 'POST',
780
+ url: './ajaxDestroyReservation.htm',
781
+ success: function (res) {
782
+ var frm3 = document.frmReservation_3
783
+ frm3.equipmentNotebook.checked = false
784
+ frm3.equipmentProjector.checked = false
785
+ frm3.equipmentMonitor.checked = false
786
+ frm3.equipmentPlayer.checked = false
787
+ frm3.equipmentSpeaker.checked = false
788
+
789
+ for (var i = frm3.notebookCnt.options.length; i >= 0; i--) {
790
+ frm3.notebookCnt.options[i] = null
791
+ }
792
+ for (var i = frm3.projectorCnt.options.length; i >= 0; i--) {
793
+ frm3.projectorCnt.options[i] = null
794
+ }
795
+ for (var i = frm3.monitorCnt.options.length; i >= 0; i--) {
796
+ frm3.monitorCnt.options[i] = null
797
+ }
798
+ for (var i = frm3.playerCnt.options.length; i >= 0; i--) {
799
+ frm3.playerCnt.options[i] = null
800
+ }
801
+ for (var i = frm3.speakerCnt.options.length; i >= 0; i--) {
802
+ frm3.speakerCnt.options[i] = null
803
+ }
804
+
805
+ setStep(2)
806
+ },
807
+ error: function (res) {
808
+ //alert( res.responseText );
809
+ //location.href = "./booking.htm?key=&projectSeq=&addedInfo=&tozApplyType=";
810
+ },
811
+ })
812
+ }
813
+
814
+ function doReservationEquipment() {
815
+ var frm1 = document.frmReservation_1
816
+ var frm2 = document.frmReservation_2
817
+ var frm3 = document.frmReservation_3
818
+ var frm4 = document.frmReservation_4
819
+
820
+ $('#btnStep3_on').hide()
821
+ $('#btnStep3_waiting').show()
822
+ $.ajax({
823
+ type: 'POST',
824
+ url: './ajaxReservationEquipment.htm',
825
+ data: {
826
+ reservationId: frm4.reservationId.value,
827
+ basedate: $(frm1.basedate).val(),
828
+ starttime: frm1.starttime1.value + '' + frm1.starttime2.value,
829
+ durationTime: frm1.durationTime.value,
830
+ equipmentNotebookChecked: frm3.equipmentNotebook.checked,
831
+ equipmentProjectorChecked: frm3.equipmentProjector.checked,
832
+ equipmentMonitorChecked: frm3.equipmentMonitor.checked,
833
+ equipmentPlayerChecked: frm3.equipmentPlayer.checked,
834
+ equipmentSpeakerChecked: frm3.equipmentSpeaker.checked,
835
+ equipmentNotebookCnt: frm3.notebookCnt.value,
836
+ equipmentProjectorCnt: frm3.projectorCnt.value,
837
+ equipmentMonitorCnt: frm3.monitorCnt.value,
838
+ equipmentPlayerCnt: frm3.playerCnt.value,
839
+ equipmentSpeakerCnt: frm3.speakerCnt.value,
840
+ },
841
+ success: function (res) {
842
+ if (res == 'SUCCESS') {
843
+ $('#branchName').html(frm2.branchName.value)
844
+ $('#branchName2').html(frm2.branchName.value)
845
+ $('#branchName3').html(frm2.branchName.value)
846
+ $('#meeting_basedate').html($(frm1.basedate).val())
847
+ $('#meeting_basedate2').html($(frm1.basedate).val())
848
+ $('#starttime').html(
849
+ frm1.starttime1.value +
850
+ ':' +
851
+ frm1.starttime2.value +
852
+ ' (' +
853
+ frm1.durationTime.options[frm1.durationTime.selectedIndex].text +
854
+ ')',
855
+ )
856
+ $('#starttime2').html(
857
+ frm1.starttime1.value +
858
+ ':' +
859
+ frm1.starttime2.value +
860
+ ' (' +
861
+ frm1.durationTime.options[frm1.durationTime.selectedIndex].text +
862
+ ')',
863
+ )
864
+ $('#userCount').html(frm1.userCount.value + '명')
865
+ $('#userCount2').html(frm1.userCount.value + '명')
866
+ $('#boothName').html(frm2.boothName.value)
867
+ $('#boothName2').html(frm2.boothName.value)
868
+ var temp = ''
869
+ if (frm3.equipmentNotebook.checked) {
870
+ temp += '노트북 ' + frm3.notebookCnt.value + '대'
871
+ }
872
+ if (frm3.equipmentProjector.checked) {
873
+ temp += '프로젝터 ' + frm3.projectorCnt.value + '대'
874
+ }
875
+ if (frm3.equipmentMonitor.checked) {
876
+ temp += '모니터 ' + frm3.monitorCnt.value + '대'
877
+ }
878
+ if (frm3.equipmentPlayer.checked) {
879
+ temp += 'CDP/카세트 ' + frm3.playerCnt.value + '대'
880
+ }
881
+ if (frm3.equipmentSpeaker.checked) {
882
+ temp += '스피커 ' + frm3.speakerCnt.value + '대'
883
+ }
884
+ $('#equipments').html(temp)
885
+ $('#equipments2').html(temp)
886
+ $('#memberCompanyName').html('한국정보산업연합회')
887
+
888
+ setStep(4)
889
+ } else {
890
+ $('#btnStep3_on').show()
891
+ $('#btnStep3_waiting').hide()
892
+ alert(res)
893
+ }
894
+ },
895
+ error: function (res) {
896
+ $('#btnStep3_on').show()
897
+ $('#btnStep3_waiting').hide()
898
+ alert(res.responseText)
899
+ },
900
+ })
901
+ }
902
+ function doPreEquipment() {
903
+ $('#btnStep4_on').hide()
904
+ $('#btnStep4_waiting').show()
905
+ $.ajax({
906
+ type: 'POST',
907
+ url: './ajaxDestroyReservationEquipment.htm',
908
+ data: {
909
+ reservationId: document.frmReservation_4.reservationId.value,
910
+ },
911
+ success: function (res) {
912
+ setStep(3)
913
+ $('#btnStep4_on').show()
914
+ $('#btnStep4_waiting').hide()
915
+ },
916
+ error: function (res) {
917
+ $('#btnStep4_on').show()
918
+ $('#btnStep4_waiting').hide()
919
+ //alert( res.responseText );
920
+ //location.href = "./booking.htm?key=&projectSeq=&addedInfo=&tozApplyType=";
921
+ },
922
+ })
923
+ }
924
+ function doSubmit() {
925
+ var frm1 = document.frmReservation_1
926
+ var frm2 = document.frmReservation_2
927
+ var frm3 = document.frmReservation_3
928
+ var frm4 = document.frmReservation_4
929
+ if (frm4.reservationId.value == false) {
930
+ alert('잘못된 접근입니다.')
931
+ } else if (frm4.phone1.value == false) {
932
+ alert('전화번호를 입력해 주세요.')
933
+ frm4.phone1.focus()
934
+ } else if (frm4.phone2.value == false) {
935
+ alert('전화번호를 입력해 주세요.')
936
+ frm4.phone2.focus()
937
+ } else if (frm4.phone3.value == false) {
938
+ alert('전화번호를 입력해 주세요.')
939
+ frm4.phone3.focus()
940
+ } else if (frm4.email1.value == false) {
941
+ alert('이메일 주소를 입력해 주세요.')
942
+ frm4.email1.focus()
943
+ } else if (frm4.email2.value == false) {
944
+ alert('이메일 주소를 입력해 주세요.')
945
+ frm4.email2.focus()
946
+ } else if (frm4.email2.value == '직접입력' && frm4.email3.value == false) {
947
+ alert('이메일 주소를 입력해 주세요.')
948
+ frm4.email3.focus()
949
+ } else if (frm4.meeting_id.value == '새모임' && frm4.newMeetingName.value == false) {
950
+ alert('새 모임명을 입력해 주세요.')
951
+
952
+ frm4.newMeetingName.focus()
953
+ } else if (frm4.name.value == false) {
954
+ alert('예약자명을 입력해 주세요.')
955
+ frm4.name.focus()
956
+ } else if (frm4.pinNum.value == false) {
957
+ alert('인증번호를 입력해 주세요.')
958
+ frm4.pinNum.focus()
959
+ } else if (frm4.meeting_id.value == false) {
960
+ alert('모임을 선택해 주세요.')
961
+
962
+ frm4.meeting_id.focus()
963
+ } else if (frm2.boothIsLarge.value == 'true' && frm4.isAgree.checked == false) {
964
+ alert('대형부스 예약은 선입금 약관에 동의하셔야 합니다.')
965
+ frm4.isAgree.focus()
966
+ } else {
967
+ $('#btnStep4_on').hide()
968
+ $('#btnStep4_waiting').show()
969
+
970
+ $.ajax({
971
+ type: 'POST',
972
+ url: './ajaxReservationConfirm.htm',
973
+ data: {
974
+ reservationId: frm4.reservationId.value,
975
+
976
+ phone: frm4.phone1.value + '-' + frm4.phone2.value + '-' + frm4.phone3.value,
977
+ phone1: frm4.phone1.value,
978
+ phone2: frm4.phone2.value,
979
+ phone3: frm4.phone3.value,
980
+
981
+ name: frm4.name.value,
982
+
983
+ pinNum: frm4.pinNum.value,
984
+
985
+ email1: frm4.email1.value,
986
+ email2: frm4.email2.value,
987
+ email3: frm4.email3.value,
988
+
989
+ meeting_id: frm4.meeting_id.value,
990
+ newMeetingName: frm4.newMeetingName.value,
991
+
992
+ prepareMemo: frm4.prepareMemo.value,
993
+ projectSeq: '',
994
+ tozApplyType: '',
995
+ addedInfo: '',
996
+ attendType: frm4.attendType !== undefined ? frm4.attendType.value : '',
997
+ isMobile: false,
998
+ },
999
+ success: function (res) {
1000
+ alert(res.resultMsg)
1001
+ if (
1002
+ res.resultMsg == '예약 되었습니다.' ||
1003
+ res.resultMsg == '대형부스 예약 신청되었습니다. 지점에서 확인 전화를 드릴 예정입니다.'
1004
+ ) {
1005
+ if (res.message3 != null && res.message3 != false && res.message3 != '') {
1006
+ location.href = res.message3
1007
+ } else {
1008
+ $('#idMemberName').html(frm4.name.value)
1009
+
1010
+ if (frm4.meeting_id.options[frm4.meeting_id.selectedIndex].value == '새모임') {
1011
+ $('#meetingName2').html(frm4.newMeetingName.value)
1012
+ } else {
1013
+ $('#meetingName2').html(frm4.meeting_id.options[frm4.meeting_id.selectedIndex].text)
1014
+ }
1015
+
1016
+ $('#prepareMemo2').html(frm4.prepareMemo.value)
1017
+ setStep(5)
1018
+ }
1019
+ } else {
1020
+ $('#btnStep4_on').show()
1021
+ $('#btnStep4_waiting').hide()
1022
+ }
1023
+ },
1024
+ error: function (res) {
1025
+ $('#btnStep4_on').show()
1026
+ $('#btnStep4_waiting').hide()
1027
+ alert(res.responseText)
1028
+ },
1029
+ })
1030
+ }
1031
+ }
1032
+ function inputNum(obj) {
1033
+ if (event.keyCode >= 48 && event.keyCode <= 57) {
1034
+ } else {
1035
+ event.returnValue = false
1036
+ }
1037
+ }
1038
+ function smlmove(big, mid, sml) {
1039
+ location.href = '/booth/booth_list.asp?bigcate=' + big + '&midcate=' + mid + '&smlcate=' + sml + '&cpage=1'
1040
+ }
1041
+ function big_change(img_file) {
1042
+ document.all['big_photo'].src = img_file
1043
+ }
1044
+ function selectall() {
1045
+ window.clipboardData.setData('Text', document.all['hidurls'].value)
1046
+ alert('주소가 복사되었습니다.\n 이동후 Ctrl+V 키를 누르시면 됩니다.')
1047
+ }
1048
+ function moimetc() {
1049
+ alert('로그인후 사용하실수 있습니다.')
1050
+ }
1051
+ function format_number(val) {
1052
+ b = val + 'c'
1053
+ c = b.length
1054
+ a = b.substr(0, c - 1)
1055
+ b = a.length
1056
+ c = b / 3
1057
+ f = Math.floor(b / 3)
1058
+ d = Math.round((c - f) * 3)
1059
+ e = Math.round((c - f) * 3)
1060
+ f = new Array()
1061
+ for (i = 0; i <= c; i++) {
1062
+ if (i == 0) {
1063
+ ds = a.substr(0, d)
1064
+ } else if (i == 1) {
1065
+ ds = a.substr(e, d)
1066
+ } else {
1067
+ e = e + 3
1068
+ ds = a.substr(e, d)
1069
+ }
1070
+ f[i] = ds
1071
+ d = 3
1072
+ }
1073
+ str = f.join(',')
1074
+ str2 = str.substr(0, 1)
1075
+ if (str2 == ',') {
1076
+ str = str.substr(1, b + c)
1077
+ }
1078
+ return str
1079
+ }
1080
+ function simul() {
1081
+ window.open('/booth/booth_main_simul.asp', 'simul', 'height=560,width=390,scrollbars=0')
1082
+ }
1083
+ function viewBoothProfile() {
1084
+ var frm = document.frmReservation_2
1085
+ var selectedIndex = frm.booth_id.selectedIndex
1086
+ if (boothProfileUrl[selectedIndex] != false) {
1087
+ window.open(boothProfileUrl[selectedIndex])
1088
+ } else {
1089
+ // alert( "등록된 부스 프로필 없음" );
1090
+ }
1091
+ }
1092
+ function dialogPrepay() {
1093
+ window.open('http://tozcokr.toz.one/dialog/dialogPrepay.htm', 'prepay', 'height=670,width=600,scrollbars=0')
1094
+ }
1095
+ </script>
1096
+ </head>
1097
+ <body>
1098
+ <!-- top -->
1099
+
1100
+ <center>
1101
+ <div id="layoutHeader">
1102
+ <div class="left">
1103
+ <a href="/partner/reservation/fkii3/swmaestro/index.htm?key=&projectSeq=&addedInfo=&tozApplyType="
1104
+ ><img src="/images/partner/toz_logo.gif"
1105
+ /></a>
1106
+ </div>
1107
+ <div class="right">
1108
+ <div style="padding-top: 14px; font-size: 14px; font-weight: bold">AI‧SW마에스트로</div>
1109
+ </div>
1110
+ </div>
1111
+ <div><img width="100%" height="27px" src="/images/partner/head_line.gif" /></div>
1112
+ </center>
1113
+
1114
+ <!-- // top -->
1115
+
1116
+ <table border="0" width="100%" cellspacing="0" cellpadding="0" valign="top">
1117
+ <!-- 컨텐츠 영역 : 시작 -->
1118
+ <tr>
1119
+ <td align="center" style="padding: 33px 0 0 0">
1120
+ <table border="0" width="700" cellspacing="0" cellpadding="0">
1121
+ <tr>
1122
+ <td align="left" width="100%" valign="top">
1123
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
1124
+ <tr>
1125
+ <td>
1126
+ <img src="/images/partner/toz-base.png" />
1127
+ &nbsp;&nbsp;&nbsp;
1128
+ <!-- img src="/images/partner/guide2.png" -->
1129
+ </td>
1130
+ </tr>
1131
+ <tr>
1132
+ <td align="right" style="padding-top: 10px">
1133
+ <a id="idReloadBtn" href="javascript:reload();">
1134
+ <img src="/images/partner/toz-button-reset.jpg" />
1135
+ </a>
1136
+ </td>
1137
+ </tr>
1138
+ </table>
1139
+ <form name="frmReservation_1">
1140
+ <table id="step1" width="100%" border="0" cellspacing="0" cellpadding="0">
1141
+ <tr>
1142
+ <td><img src="/images/old/title_step1_on.png" /></td>
1143
+ </tr>
1144
+ <tr>
1145
+ <td style="position: relative">
1146
+ <!--
1147
+ <div style="position:absolute;color:#333333;right:30px;top:12px;z-index:9999;border:3px solid #ff0000;background:#ffefef;padding:10px;">
1148
+ <u><b>2013년 설 명절</b></u> 지점 예약을 원하시나요?<br>
1149
+ 예약 전 지점별 운영시간을 꼭 확인하세요!<br><br>
1150
+ <a href="http://www.toz.co.kr/helpdesk/notice_view.htm?id=178" target="_blank">
1151
+ <span style="background:red;color:white;font-weight:bold;">설 명절 운영시간 확인하기 click!</span>
1152
+ </a>
1153
+ </div>
1154
+ -->
1155
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
1156
+ <col width="135" />
1157
+ <col width="*" />
1158
+ <tr>
1159
+ <td id="tdStep1_1" style="background: #f5f5f5"><img src="/images/old/basedate.png" /></td>
1160
+ <td style="padding: 5px 0 5px 10px">
1161
+ <input
1162
+ type="text"
1163
+ id="basedate"
1164
+ name="basedate"
1165
+ onclick="javascript: $('#basedate').datepicker('show')"
1166
+ value=""
1167
+ readonly
1168
+ style="width: 80px"
1169
+ />
1170
+ </td>
1171
+ </tr>
1172
+ <tr>
1173
+ <td id="tdStep1_2" style="background: #f5f5f5"><img src="/images/old/time.png" /></td>
1174
+ <td style="padding: 5px 0 5px 10px">
1175
+ <select name="starttime1" onchange="javascript: checkDurationTime(false, true)">
1176
+ <!--<option value="08">8</option>-->
1177
+ <option value="09" selected>9</option>
1178
+ <option value="10">10</option>
1179
+ <option value="11">11</option>
1180
+ <option value="12">12</option>
1181
+ <option value="13">13</option>
1182
+ <option value="14">14</option>
1183
+ <option value="15">15</option>
1184
+ <option value="16">16</option>
1185
+ <option value="17">17</option>
1186
+ <option value="18">18</option>
1187
+ <option value="19">19</option>
1188
+ <option value="20">20</option>
1189
+ <option value="21">21</option>
1190
+ </select>
1191
+
1192
+ <select name="starttime2" onchange="javascript: checkDurationTime(false, true)">
1193
+ <option value="00">00</option>
1194
+ <option value="10">10</option>
1195
+ <option value="20">20</option>
1196
+ <option value="30">30</option>
1197
+ <option value="40">40</option>
1198
+ <option value="50">50</option>
1199
+ </select>
1200
+ 분 부터
1201
+ <select
1202
+ name="durationTime"
1203
+ onchange="
1204
+ javascript: checkBranchHoliday()
1205
+ checkEndTime()
1206
+ "
1207
+ >
1208
+ <option value="">날짜 선택</option>
1209
+ </select>
1210
+ <span id="expectLeavetime"></span>
1211
+ </td>
1212
+ </tr>
1213
+ <tr>
1214
+ <td id="tdStep1_3" style="background: #f5f5f5"><img src="/images/old/userCount.png" /></td>
1215
+ <td style="padding: 5px 0 5px 10px">
1216
+ <input
1217
+ type="text"
1218
+ name="userCount"
1219
+ value=""
1220
+ onkeyPress="javascript:inputNum(this);"
1221
+ maxlength="3"
1222
+ style="width: 40px"
1223
+ />
1224
+
1225
+ </td>
1226
+ </tr>
1227
+ <tr>
1228
+ <td id="tdStep1_4" style="background: #f5f5f5"><img src="/images/old/branch.png" /></td>
1229
+ <td style="padding: 5px 0 5px 10px">
1230
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" style="color: #333333">
1231
+ <col width="25%" />
1232
+ <col width="25%" />
1233
+ <col width="25%" />
1234
+ <col width="25%" />
1235
+ <tr>
1236
+ <td>
1237
+ <label><input type="checkbox" name="branch_id" value="27" />강남토즈타워점</label>
1238
+ </td>
1239
+ <td>
1240
+ <label
1241
+ ><input type="checkbox" name="branch_id" value="145" />강남컨퍼런스센터</label
1242
+ >
1243
+ </td>
1244
+ <td>
1245
+ <label><input type="checkbox" name="branch_id" value="19" />양재점</label>
1246
+ </td>
1247
+ <td>
1248
+ <label><input type="checkbox" name="branch_id" value="20" />건대점</label>
1249
+ </td>
1250
+ </tr>
1251
+ <tr>
1252
+ <td>
1253
+ <label><input type="checkbox" name="branch_id" value="15" />선릉점</label>
1254
+ </td>
1255
+ <td>
1256
+ <label><input type="checkbox" name="branch_id" value="139" />마이스 역삼센터</label>
1257
+ </td>
1258
+ <td>
1259
+ <label
1260
+ ><input type="checkbox" name="branch_id" value="134" />마이스 광화문센터</label
1261
+ >
1262
+ </td>
1263
+ <td>
1264
+ <label><input type="checkbox" name="branch_id" value="30" />신촌비즈센터</label>
1265
+ </td>
1266
+ </tr>
1267
+ <tr>
1268
+ <td>
1269
+ <label><input type="checkbox" name="branch_id" value="149" />홍대점</label>
1270
+ </td>
1271
+ </tr>
1272
+ </table>
1273
+ </td>
1274
+ </tr>
1275
+ </table>
1276
+ </td>
1277
+ </tr>
1278
+ <tr>
1279
+ <td><img src="/images/old/line.png" /></td>
1280
+ </tr>
1281
+ <tr>
1282
+ <td align="center" style="padding-top: 10px">
1283
+ <span id="btnStep1_on">
1284
+ <a href="javascript:doReservationSearch();"><img src="/images/old/search.png" /></a>
1285
+ </span>
1286
+ <div id="btnStep1_waiting" style="display: none; height: 37px">
1287
+ <img src="/images/common/ajax-loader.gif" />
1288
+ </div>
1289
+ <span id="btnStep1_off" style="display: none">
1290
+ <img src="/images/old/search_off.png" />
1291
+ </span>
1292
+ </td>
1293
+ </tr>
1294
+ </table>
1295
+ </form>
1296
+ <form name="frmReservation_2">
1297
+ <input type="hidden" name="branchName" value="" />
1298
+ <input type="hidden" name="boothName" value="" />
1299
+ <input type="hidden" name="boothIsLarge" value="false" />
1300
+ <table id="step2" width="100%" border="0" cellspacing="0" cellpadding="0">
1301
+ <tr>
1302
+ <td style="padding-top: 30px"><img src="/images/old/title_step2_off.png" /></td>
1303
+ </tr>
1304
+ <tr>
1305
+ <td>
1306
+ <table border="0" cellspacing="0" cellpadding="0">
1307
+ <col width="135" />
1308
+ <col width="*" />
1309
+ <col width="30" />
1310
+ <tr>
1311
+ <td id="tdStep2" style="background: #f5f5f5"><img src="/images/old/booth.png" /></td>
1312
+ <td style="padding: 5px 0 5px 30px">
1313
+ <select name="booth_id" style="width: 340px"></select>
1314
+ </td>
1315
+ <td style="padding-left: 20px">
1316
+ <span id="idBoothProfileUrl_on" style="display: none">
1317
+ <a href="javascript:viewBoothProfile();"><img src="/images/old/detail.png" /></a>
1318
+ </span>
1319
+ <span id="idBoothProfileUrl_off" style="display: none">
1320
+ <img src="/images/old/detail_off.png" />
1321
+ </span>
1322
+ </td>
1323
+ </tr>
1324
+ </table>
1325
+ </td>
1326
+ </tr>
1327
+ <tr>
1328
+ <td><img src="/images/old/line.png" /></td>
1329
+ </tr>
1330
+ <tr>
1331
+ <td align="center" style="padding-top: 10px">
1332
+ <span id="btnStep2_on">
1333
+ <a href="javascript:doPreSearch();"><img src="/images/old/btn_retry.png" /></a>
1334
+ <a href="javascript:doReservationBooth();"><img src="/images/old/btn_next.png" /></a>
1335
+ </span>
1336
+ <div id="btnStep2_waiting" style="display: none; height: 37px">
1337
+ <img src="/images/common/ajax-loader.gif" />
1338
+ </div>
1339
+ <span id="btnStep2_off" style="display: none">
1340
+ <img src="/images/old/btn_retry_off.png" />
1341
+ <img src="/images/old/btn_next_off.png" />
1342
+ </span>
1343
+ </td>
1344
+ </tr>
1345
+ </table>
1346
+ </form>
1347
+ <form name="frmReservation_3">
1348
+ <table id="step3" width="100%" border="0" cellspacing="0" cellpadding="0">
1349
+ <tr>
1350
+ <td style="padding-top: 30px"><img src="/images/old/title_step3_off.png" /></td>
1351
+ </tr>
1352
+ <tr>
1353
+ <td>
1354
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
1355
+ <col width="135" />
1356
+ <col width="*" />
1357
+ <tr>
1358
+ <td id="tdStep3" style="background: #f5f5f5"><img src="/images/old/equipment.png" /></td>
1359
+ <td style="padding: 5px 0 5px 30px">
1360
+ <table border="0" cellspacing="0" cellpadding="0">
1361
+ <!-- kibwa 인 경우 노트북 비노출 -->
1362
+
1363
+ <tr style="visibility: hidden">
1364
+ <td>
1365
+ <label>
1366
+ <input type="checkbox" value="" />
1367
+ </label>
1368
+ </td>
1369
+ </tr>
1370
+
1371
+ <tr style="display: none">
1372
+ <td>
1373
+ <label for="equipmentNotebook" style="cursor: pointer">
1374
+ <input
1375
+ id="equipmentNotebook"
1376
+ type="checkbox"
1377
+ name="equipmentNotebook"
1378
+ value=""
1379
+ />노트북 (유료)
1380
+ </label>
1381
+ </td>
1382
+ <td style="padding-left: 40px">
1383
+ <select name="notebookCnt"></select>
1384
+ </td>
1385
+ </tr>
1386
+ <tr style="display: none">
1387
+ <td>
1388
+ <label for="equipmentProjector" style="cursor: pointer">
1389
+ <input
1390
+ id="equipmentProjector"
1391
+ type="checkbox"
1392
+ name="equipmentProjector"
1393
+ value=""
1394
+ />프로젝터 (유료)
1395
+ </label>
1396
+ </td>
1397
+ <td style="padding-left: 40px">
1398
+ <select name="projectorCnt"></select>
1399
+ </td>
1400
+ </tr>
1401
+ <tr style="display: none">
1402
+ <td>
1403
+ <label for="equipmentMonitor" style="cursor: pointer">
1404
+ <input
1405
+ id="equipmentMonitor"
1406
+ type="checkbox"
1407
+ name="equipmentMonitor"
1408
+ value=""
1409
+ />모니터 (무료)
1410
+ </label>
1411
+ </td>
1412
+ <td style="padding-left: 40px">
1413
+ <select name="monitorCnt"></select>
1414
+ </td>
1415
+ </tr>
1416
+ <tr style="display: none">
1417
+ <td>
1418
+ <label for="equipmentPlayer" style="cursor: pointer">
1419
+ <input
1420
+ id="equipmentPlayer"
1421
+ type="checkbox"
1422
+ name="equipmentPlayer"
1423
+ value=""
1424
+ />CDP/카세트 (무료)
1425
+ </label>
1426
+ </td>
1427
+ <td style="padding-left: 40px">
1428
+ <select name="playerCnt"></select>
1429
+ </td>
1430
+ </tr>
1431
+ <tr style="display: none">
1432
+ <td>
1433
+ <label for="equipmentSpeaker" style="cursor: pointer">
1434
+ <input
1435
+ id="equipmentSpeaker"
1436
+ type="checkbox"
1437
+ name="equipmentSpeaker"
1438
+ value=""
1439
+ />스피커 (무료)
1440
+ </label>
1441
+ </td>
1442
+ <td style="padding-left: 40px">
1443
+ <select name="speakerCnt"></select>
1444
+ </td>
1445
+ </tr>
1446
+ </table>
1447
+ </td>
1448
+ </tr>
1449
+ </table>
1450
+ </td>
1451
+ </tr>
1452
+ <tr>
1453
+ <td><img src="/images/old/line.png" /></td>
1454
+ </tr>
1455
+ <tr>
1456
+ <td align="center" style="padding-top: 10px">
1457
+ <span id="btnStep3_on">
1458
+ <a href="javascript:doPreBooth();"><img src="/images/old/btn_prev.png" /></a>
1459
+ <a href="javascript:doReservationEquipment();"><img src="/images/old/btn_next.png" /></a>
1460
+ </span>
1461
+ <div id="btnStep3_waiting" style="display: none; height: 37px">
1462
+ <img src="/images/common/ajax-loader.gif" />
1463
+ </div>
1464
+ <span id="btnStep3_off" style="display: none">
1465
+ <img src="/images/old/btn_prev_off.png" />
1466
+ <img src="/images/old/btn_next_off.png" />
1467
+ </span>
1468
+ </td>
1469
+ </tr>
1470
+ </table>
1471
+ </form>
1472
+ <form name="frmReservation_4">
1473
+ <input type="hidden" name="reservationId" />
1474
+ <input type="hidden" name="memberCompany_id" value="25408" />
1475
+ <table id="step4" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
1476
+ <tr>
1477
+ <td style="padding-top: 30px"><img src="/images/old/title_step4_off.png" /></td>
1478
+ </tr>
1479
+ <tr>
1480
+ <td align="center" style="padding: 20px 50px 20px 50px">
1481
+ <table
1482
+ width="100%"
1483
+ border="0"
1484
+ cellspacing="0"
1485
+ cellpadding="0"
1486
+ style="background: #f5f5f5; color: #333333"
1487
+ >
1488
+ <col width="50%" />
1489
+ <col width="50%" />
1490
+ <tr>
1491
+ <td align="left" height="30">&nbsp;&nbsp;지점 : <span id="branchName"></span></td>
1492
+ <td align="left">&nbsp;&nbsp;모임일 : <span id="meeting_basedate"></span></td>
1493
+ </tr>
1494
+ <tr>
1495
+ <td align="left" height="30">&nbsp;&nbsp;시간 : <span id="starttime"></span></td>
1496
+ <td align="left">&nbsp;&nbsp;인원 : <span id="userCount"></span></td>
1497
+ </tr>
1498
+ <tr>
1499
+ <td align="left" height="30">&nbsp;&nbsp;부스 : <span id="boothName"></span></td>
1500
+ <td align="left">&nbsp;&nbsp;설비 : <span id="equipments"></span></td>
1501
+ </tr>
1502
+ </table>
1503
+ </td>
1504
+ </tr>
1505
+ <tr>
1506
+ <td><img src="/images/old/line_b.png" /></td>
1507
+ </tr>
1508
+ <tr>
1509
+ <td>
1510
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
1511
+ <col width="135" />
1512
+ <col width="*" />
1513
+ <tr>
1514
+ <td style="background: #f5f5f5">&nbsp;</td>
1515
+ <td></td>
1516
+ </tr>
1517
+ <tr>
1518
+ <td
1519
+ style="
1520
+ background: #f5f5f5;
1521
+ padding-left: 20px;
1522
+ font-size: 11px;
1523
+ font-weight: bold;
1524
+ letter-spacing: -1px;
1525
+ "
1526
+ >
1527
+ 기업명
1528
+ </td>
1529
+ <td style="padding: 5px 0 5px 30px"><span id="memberCompanyName"></span></td>
1530
+ </tr>
1531
+
1532
+ <tr>
1533
+ <td
1534
+ style="
1535
+ background: #f5f5f5;
1536
+ padding-left: 20px;
1537
+ font-size: 11px;
1538
+ font-weight: bold;
1539
+ letter-spacing: -1px;
1540
+ "
1541
+ >
1542
+ 예약자
1543
+ </td>
1544
+ <td style="padding: 5px 0 5px 30px">
1545
+ <input type="text" name="name" value="" style="width: 80px" />
1546
+ </td>
1547
+ </tr>
1548
+
1549
+ <tr>
1550
+ <td
1551
+ style="
1552
+ background: #f5f5f5;
1553
+ padding-left: 20px;
1554
+ font-size: 11px;
1555
+ font-weight: bold;
1556
+ letter-spacing: -1px;
1557
+ "
1558
+ >
1559
+ 핸드폰
1560
+ </td>
1561
+ <td style="padding: 5px 0 5px 30px">
1562
+ <table border="0" cellspacing="0" cellpadding="0">
1563
+ <tr>
1564
+ <td>
1565
+ <select name="phone1">
1566
+ <option value="010">010</option>
1567
+ <option value="011">011</option>
1568
+ <option value="016">016</option>
1569
+ <option value="017">017</option>
1570
+ <option value="018">018</option>
1571
+ <option value="019">019</option>
1572
+ </select>
1573
+ -
1574
+ <input
1575
+ type="text"
1576
+ name="phone2"
1577
+ value=""
1578
+ style="width: 50px"
1579
+ onkeyPress="javascript:inputNum(this);"
1580
+ />
1581
+ -
1582
+ <input
1583
+ type="text"
1584
+ name="phone3"
1585
+ value=""
1586
+ style="width: 50px"
1587
+ onkeyPress="javascript:inputNum(this);"
1588
+ />
1589
+ </td>
1590
+ <td>
1591
+ &nbsp;<a href="javascript:hpVerify();"><img src="/images/old/btn_verify.png" /></a>
1592
+ </td>
1593
+ </tr>
1594
+ </table>
1595
+ </td>
1596
+ </tr>
1597
+ <tr>
1598
+ <td
1599
+ style="
1600
+ background: #f5f5f5;
1601
+ padding-left: 20px;
1602
+ font-size: 11px;
1603
+ font-weight: bold;
1604
+ letter-spacing: -1px;
1605
+ "
1606
+ >
1607
+ 인증번호
1608
+ </td>
1609
+ <td style="padding: 5px 0 5px 30px">
1610
+ <input
1611
+ type="text"
1612
+ name="pinNum"
1613
+ onkeyPress="javascript:inputNum(this);"
1614
+ style="width: 80px"
1615
+ />
1616
+ </td>
1617
+ </tr>
1618
+
1619
+ <tr>
1620
+ <td
1621
+ style="
1622
+ background: #f5f5f5;
1623
+ padding-left: 20px;
1624
+ font-size: 11px;
1625
+ font-weight: bold;
1626
+ letter-spacing: -1px;
1627
+ "
1628
+ >
1629
+ Email
1630
+ </td>
1631
+ <td style="padding: 5px 0 5px 30px">
1632
+ <input type="text" name="email1" value="" style="width: 100px" /> @
1633
+ <select name="email2" onchange="javascript: checkEmail2(this.value)">
1634
+ <option value="">-- 선택 --</option>
1635
+ <option value="hanmail.net">hanmail.net</option>
1636
+ <option value="gmail.com">gmail.com</option>
1637
+ <option value="nate.com">nate.com</option>
1638
+ <option value="naver.com">naver.com</option>
1639
+ <option value="daum.net">daum.net</option>
1640
+ <option value="dreamwiz.com">dreamwiz.com</option>
1641
+ <option value="yahoo.com">yahoo.com</option>
1642
+ <option value="yahoo.co.kr">yahoo.co.kr</option>
1643
+ <option value="msn.com">msn.com</option>
1644
+ <option value="paran.com">paran.com</option>
1645
+ <option value="korea.com">korea.com</option>
1646
+ <option value="freechal.com">freechal.com</option>
1647
+ <option value="lycos.co.kr">lycos.co.kr</option>
1648
+ <option value="msn.co.kr">msn.co.kr</option>
1649
+ <option value="empal.com">empal.com</option>
1650
+ <option value="hotmail.com">hotmail.com</option>
1651
+ <option value="직접입력">직접입력</option>
1652
+ </select>
1653
+ <span id="idEmail3" style="display: none"
1654
+ ><input type="text" name="email3" value="" style="width: 100px"
1655
+ /></span>
1656
+ </td>
1657
+ </tr>
1658
+
1659
+ <tr>
1660
+ <td
1661
+ style="
1662
+ background: #f5f5f5;
1663
+ padding-left: 20px;
1664
+ font-size: 11px;
1665
+ font-weight: bold;
1666
+ letter-spacing: -1px;
1667
+ "
1668
+ >
1669
+ 모임명
1670
+ </td>
1671
+ <td style="padding: 5px 0 5px 30px">
1672
+ <select name="meeting_id" onchange="javascript: checkMeeting_id(this.value)">
1673
+ <option value="">-- 선택하세요. --</option>
1674
+ <option value="새모임">[새 모임]</option>
1675
+
1676
+ <option value="2305094">멘토특강_김현동 님</option>
1677
+
1678
+ <option value="2306247">엑스퍼트 상담</option>
1679
+
1680
+ <option value="2320505">정규멘토링</option>
1681
+
1682
+ <option value="2322732">자유멘토링_김현동 님</option>
1683
+
1684
+ <option value="2322821">줌미팅을 위해 이용</option>
1685
+
1686
+ <option value="2322828">자유멘토링_김한빛 님</option>
1687
+
1688
+ <option value="2322860">이상호멘토 자유멘토링</option>
1689
+
1690
+ <option value="2322862">자유멘토링_제한재</option>
1691
+
1692
+ <option value="2322891">김동현 Expert</option>
1693
+
1694
+ <option value="2322934">자유멘토링 박원형</option>
1695
+
1696
+ <option value="2322942">자유멘토링_SW마에스트로</option>
1697
+
1698
+ <option value="2323001">정유진멘토) 자유멘토링</option>
1699
+
1700
+ <option value="2323036">Expert 한석현</option>
1701
+
1702
+ <option value="2323104">강진범 멘토링</option>
1703
+
1704
+ <option value="2323115">이찬형 멘토 자율멘토링</option>
1705
+
1706
+ <option value="2323167">세얼간이팀 자유멘토링</option>
1707
+
1708
+ <option value="2323194">[자유멘토링] 팀40(정성원, 김태현, 김태현)</option>
1709
+
1710
+ <option value="2323302">정철웅 멘토링모임</option>
1711
+
1712
+ <option value="2323310">자유멘토링_최원섭님</option>
1713
+
1714
+ <option value="2323362">fluXite</option>
1715
+
1716
+ <option value="2323434">조재홍 멘토링</option>
1717
+
1718
+ <option value="2323524">[특강] Convergence&UX&UI</option>
1719
+
1720
+ <option value="2323547">9팀 기획회의</option>
1721
+
1722
+ <option value="2323548">자유멘토링 (신도림, 어둠속의 자식들)</option>
1723
+
1724
+ <option value="2323549">김재형 팀회의</option>
1725
+
1726
+ <option value="2323550">[자유멘토링] 이동원</option>
1727
+
1728
+ <option value="2323581">박순영 멘토 자유멘토링</option>
1729
+
1730
+ <option value="2323692">스타팅블루팀 멘토링(정민철)</option>
1731
+
1732
+ <option value="2323695">Expert 정성목</option>
1733
+
1734
+ <option value="2323699">정원용 멘토님 - 정규 멘토링</option>
1735
+
1736
+ <option value="2323818">[김윤래멘토]</option>
1737
+
1738
+ <option value="2323830">HWM 멘토링</option>
1739
+
1740
+ <option value="2323842">최학열 멘토링</option>
1741
+
1742
+ <option value="2323846">팀37 자유 멘토링 (전우성)</option>
1743
+
1744
+ <option value="2323944">팀10 자유멘토링 (전우성)</option>
1745
+
1746
+ <option value="2323949">정진규_SW마라스트로_자유멘토링</option>
1747
+
1748
+ <option value="2324322">Triangle팀 자유 멘토링</option>
1749
+
1750
+ <option value="2324416">팀회의</option>
1751
+
1752
+ <option value="2324616">Expert 김수빈</option>
1753
+
1754
+ <option value="2324770">자유 멘토링 (박병진 멘토)</option>
1755
+
1756
+ <option value="2324798">특강</option>
1757
+
1758
+ <option value="2324847">김민수-자유멘토링</option>
1759
+
1760
+ <option value="2324934">박지환 Expert 상담</option>
1761
+
1762
+ <option value="2325128">Expert 지우석</option>
1763
+
1764
+ <option value="2325200">[무인마]팀회의</option>
1765
+
1766
+ <option value="2325410">Expert 정승우</option>
1767
+
1768
+ <option value="2325438">정규멘토링 고세환</option>
1769
+
1770
+ <option value="2325645">팀 멘토링(코노멘트)</option>
1771
+
1772
+ <option value="2326383">이찬형 정규멘토링</option>
1773
+
1774
+ <option value="2326421">정규멘토링_김현동 님</option>
1775
+
1776
+ <option value="2326444">박원형 멘토</option>
1777
+
1778
+ <option value="2326759">Expert 안세훈_임소현 님</option>
1779
+
1780
+ <option value="2326821">창업기업모임</option>
1781
+
1782
+ <option value="2327385">꼬꼬무팀 멘토링</option>
1783
+
1784
+ <option value="2327388">멘토링</option>
1785
+
1786
+ <option value="2327530">스물셋팀 정규멘토링</option>
1787
+
1788
+ <option value="2327596">정규멘토링(최원섭 멘토)</option>
1789
+
1790
+ <option value="2327621">박주형 멘토님 멘토링</option>
1791
+
1792
+ <option value="2327755">팀러닛 멘토링</option>
1793
+
1794
+ <option value="2327878">안재홍멘토 정규멘토링</option>
1795
+
1796
+ <option value="2327921">정규멘토링_김관영 님</option>
1797
+
1798
+ <option value="2327980">곽재광 팀장</option>
1799
+
1800
+ <option value="2328064">[멘토링] 장시현</option>
1801
+
1802
+ <option value="2328185">정규_멘토링</option>
1803
+
1804
+ <option value="2328207">정규멘토링_HWM</option>
1805
+
1806
+ <option value="2328315">정경민 멘토님 멘토링</option>
1807
+
1808
+ <option value="2328346">[정철웅 멘토님] 정규 멘토링</option>
1809
+
1810
+ <option value="2328430">FIRST</option>
1811
+
1812
+ <option value="2328537">정규멘토링_어둠의자식들</option>
1813
+
1814
+ <option value="2328590">자유멘토링_HWM</option>
1815
+
1816
+ <option value="2328803">모닥불 정규멘토링</option>
1817
+
1818
+ <option value="2329254">First 멘토링</option>
1819
+
1820
+ <option value="2329456">정규멘토링_장태영</option>
1821
+
1822
+ <option value="2329778">Autovertise 정규멘토링</option>
1823
+
1824
+ <option value="2329779">BetterLife 정규멘토링</option>
1825
+
1826
+ <option value="2329884">정규멘토링 - 장상현</option>
1827
+
1828
+ <option value="2330660">A.I. 팀 자유멘토링</option>
1829
+
1830
+ <option value="2330821">이태우 멘토님 멘토링</option>
1831
+
1832
+ <option value="2330857">Triangle 정규멘토링</option>
1833
+
1834
+ <option value="2331029">자유멘토링_김관영</option>
1835
+
1836
+ <option value="2331056">[정원용 멘토님] 팀 멘토링</option>
1837
+
1838
+ <option value="2332542">정규멘토링_김관영</option>
1839
+
1840
+ <option value="2333844">팀 멘토링 (박병진 멘토)</option>
1841
+
1842
+ <option value="2334245">멘토링-박주형멘토</option>
1843
+
1844
+ <option value="2334324">[정철웅 멘토님] 팀 멘토링</option>
1845
+
1846
+ <option value="2334366">정규 멘토링</option>
1847
+
1848
+ <option value="2335414">AWS워킹백워드워크숍</option>
1849
+
1850
+ <option value="2335425">이광* 멘토</option>
1851
+
1852
+ <option value="2335522">멘토링 - 정원용 멘토님</option>
1853
+
1854
+ <option value="2335852">연장 멘토링</option>
1855
+
1856
+ <option value="2335991">고도화과정 멘토링</option>
1857
+
1858
+ <option value="2336027">박수현 멘토님 멘토링</option>
1859
+
1860
+ <option value="2353030">소마 신청 테스트</option>
1861
+
1862
+ <option value="2354071">test</option>
1863
+
1864
+ <option value="2354455">자유멘토링_이상현 님</option>
1865
+
1866
+ <option value="2354560">멘토특강 김관영</option>
1867
+
1868
+ <option value="2354561">자유멘토링 김관영</option>
1869
+
1870
+ <option value="2354562">강준혁 멘토링</option>
1871
+
1872
+ <option value="2354563">김도영 멘토링</option>
1873
+
1874
+ <option value="2354571">김현호_멘토링</option>
1875
+
1876
+ <option value="2354577">[전수열] 자유멘토링</option>
1877
+
1878
+ <option value="2354584">멘토 특강 - 박순영</option>
1879
+
1880
+ <option value="2354590">멘토특강_박재선</option>
1881
+
1882
+ <option value="2354603">멘토_김태성</option>
1883
+
1884
+ <option value="2354617">멘토특강_이원준</option>
1885
+
1886
+ <option value="2354626">멘토특강_이현수</option>
1887
+
1888
+ <option value="2354654">[멘토 특강] GPT-6가 나와도 안 망하는 프로젝트 고르는 법</option>
1889
+
1890
+ <option value="2354666">자유멘토링</option>
1891
+
1892
+ <option value="2354670">[멘토 특강] 바이브코딩 기초반</option>
1893
+
1894
+ <option value="2354672">[정진우멘토] 바이브코딩 기초반</option>
1895
+
1896
+ <option value="2354674">[정진우멘토] 바이브코딩 심화반</option>
1897
+
1898
+ <option value="2354714">310팀 멘토링(강민구 멘토)</option>
1899
+
1900
+ <option value="2354745">자유멘토링 김태완</option>
1901
+
1902
+ <option value="2354768">[VC홍순엽멘토링]</option>
1903
+
1904
+ <option value="2354775">정문창_멘토_특강</option>
1905
+
1906
+ <option value="2354781">[김찬수] 자유멘토링</option>
1907
+
1908
+ <option value="2354804">[Expert] 박찬솔</option>
1909
+
1910
+ <option value="2354926">
1911
+ 글로벌 빅테크는 어떻게 일할까? 실 제품을 만들기 위한 실무 프로덕션 과정
1912
+ </option>
1913
+
1914
+ <option value="2354972">[김유심] 기획 멘토링</option>
1915
+
1916
+ <option value="2354973">기획특강 아이디어 구체화하기</option>
1917
+
1918
+ <option value="2354974">[김찬수] 기획 멘토링</option>
1919
+
1920
+ <option value="2354975">[자유멘토링] 방한민</option>
1921
+
1922
+ <option value="2354986">[자유멘토링] _ 장효봉</option>
1923
+
1924
+ <option value="2355004">자유멘토링_전수열</option>
1925
+
1926
+ <option value="2355019">멘토특강</option>
1927
+
1928
+ <option value="2355026">김찬수 기획 특강</option>
1929
+
1930
+ <option value="2355029">소마 프로젝트, 창업도 취업도 포기하지 않는 방향성 설계</option>
1931
+
1932
+ <option value="2355031">[멘토 특강] [김대호] - AI에게 지갑 줘보기 (이론 + 실습)</option>
1933
+
1934
+ <option value="2355068">욕심쟁이들 팀 멘토링</option>
1935
+ </select>
1936
+ <span id="idNewMeetingName" style="display: none"
1937
+ ><input type="text" name="newMeetingName" style="width: 100px"
1938
+ /></span>
1939
+ </td>
1940
+ </tr>
1941
+
1942
+ <tr>
1943
+ <td
1944
+ style="
1945
+ background: #f5f5f5;
1946
+ padding-left: 20px;
1947
+ font-size: 11px;
1948
+ font-weight: bold;
1949
+ letter-spacing: -1px;
1950
+ "
1951
+ >
1952
+ 맞춤서비스
1953
+ </td>
1954
+ <td style="padding: 5px 0 5px 30px">
1955
+ <textarea name="prepareMemo" style="width: 70%; height: 80px"></textarea>
1956
+ </td>
1957
+ </tr>
1958
+
1959
+ <tr>
1960
+ <td
1961
+ style="
1962
+ background: #f5f5f5;
1963
+ padding-left: 20px;
1964
+ font-size: 11px;
1965
+ font-weight: bold;
1966
+ letter-spacing: -1px;
1967
+ "
1968
+ >
1969
+ 약관 동의
1970
+ </td>
1971
+ <td style="padding: 5px 0 5px 30px">
1972
+ <p id="largeReservInfo" style="font-size: 11px">
1973
+ 대형 부스의 안정적인 운영을 위하여 토즈에서는 대형부스의 경우, 선입금(30%) 제도를
1974
+ 실시하고 있습니다.<br />
1975
+ 선입금 약관을 읽으신 후, 동의해 주셔야 예약 신청이 가능합니다.
1976
+ </p>
1977
+ <table border="0" cellspacing="0" cellpadding="0">
1978
+ <tr>
1979
+ <td>
1980
+ <span id="imgIsAgree_off">
1981
+ <img src="/images/old/prepay_agree_off.png" />
1982
+ </span>
1983
+ <span id="imgIsAgree_on" style="display: none">
1984
+ <a href="javascript:dialogPrepay();">
1985
+ <img src="/images/old/prepay_agree.png" />
1986
+ </a>
1987
+ </span>
1988
+ </td>
1989
+ <td><input type="checkbox" name="isAgree" /></td>
1990
+ <td id="largeReservInfo2" style="font-size: 11px">
1991
+ 선입금 약관을 읽었으며, 약관 내용에 동의합니다.
1992
+ </td>
1993
+ </tr>
1994
+ </table>
1995
+ </td>
1996
+ </tr>
1997
+ </table>
1998
+ </td>
1999
+ </tr>
2000
+ <tr>
2001
+ <td><img src="/images/old/line.png" /></td>
2002
+ </tr>
2003
+ <tr>
2004
+ <td align="center" style="padding-top: 10px">
2005
+ <span id="btnStep4_on">
2006
+ <a href="javascript:doPreEquipment();"><img src="/images/old/btn_prev.png" /></a>
2007
+
2008
+ <a href="javascript:doSubmit();"><img src="/images/old/btn_complete.png" /></a>
2009
+ </span>
2010
+ <div id="btnStep4_waiting" style="display: none; height: 37px">
2011
+ <img src="/images/common/ajax-loader.gif" />
2012
+ </div>
2013
+ </td>
2014
+ </tr>
2015
+ </table>
2016
+ </form>
2017
+ <table id="step5" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
2018
+ <tr>
2019
+ <td style="padding-top: 30px"><img src="/images/old/title_step5_off.png" /></td>
2020
+ </tr>
2021
+ <tr>
2022
+ <td>
2023
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" style="color: #333333">
2024
+ <tr>
2025
+ <td style="padding: 20px 30px 20px 30px">
2026
+ <span id="idMemberName"></span> 님의 예약이 아래와 같이 확정되었습니다.<br />
2027
+ 15인 이하의 일반예약은 별도로 지점에서 확인 전화를 드리지 않으니, 이 점 유의하시기 바랍니다.
2028
+ </td>
2029
+ </tr>
2030
+ <tr>
2031
+ <td style="padding: 0 50px 0 50px">
2032
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" style="background: #f5f5f5">
2033
+ <col width="50%" />
2034
+ <col width="50%" />
2035
+ <tr>
2036
+ <td height="30">&nbsp;&nbsp;모임명 : <span id="meetingName2"></span></td>
2037
+ <td>예약자 : 한국정보산업연합회</td>
2038
+ </tr>
2039
+ <tr>
2040
+ <td height="30">&nbsp;&nbsp;지점 : <span id="branchName2"></span></td>
2041
+ <td>모임일 : <span id="meeting_basedate2"></span></td>
2042
+ </tr>
2043
+ <tr>
2044
+ <td height="30">&nbsp;&nbsp;시간 : <span id="starttime2"></span></td>
2045
+ <td>인원 : <span id="userCount2"></span></td>
2046
+ </tr>
2047
+ <tr>
2048
+ <td height="30">&nbsp;&nbsp;부스 : <span id="boothName2"></span></td>
2049
+ <td>설비 : <span id="equipments2"></span></td>
2050
+ </tr>
2051
+ <tr>
2052
+ <td colspan="2" height="30">
2053
+ &nbsp;&nbsp;맞춤 서비스 : <span id="prepareMemo2"></span>
2054
+ </td>
2055
+ </tr>
2056
+ </table>
2057
+ </td>
2058
+ </tr>
2059
+ <tr>
2060
+ <td style="padding: 20px 30px 20px 30px">
2061
+ <!--
2062
+ 토즈 회원으로 예약한 경우, 예약의 확인 및 취소는 <span style="color:red;font-weight:bold;">마이페이지 > 예약관리</span>에서 가능하며,<br>
2063
+ 전화(<span id="branchName3"></span> / <span id="branchTel"></span>)로도 가능합니다.
2064
+ -->
2065
+ </td>
2066
+ </tr>
2067
+ </table>
2068
+ </td>
2069
+ </tr>
2070
+ <tr>
2071
+ <td><img src="/images/old/line.png" /></td>
2072
+ </tr>
2073
+ <tr>
2074
+ <td align="right" style="padding-top: 10px">
2075
+ <a href="javascript:window.print();"><img src="/images/old/btn_print.png" /></a>
2076
+ </td>
2077
+ </tr>
2078
+ <tr>
2079
+ <td align="center">
2080
+ <!--
2081
+ <a href="http://www.toz.co.kr/mypage/mypage_reservation_general.asp"><img src="/images/old/btn_mypage.png"></a>
2082
+ -->
2083
+ <a href="./index.htm?key=&projectSeq=&addedInfo=&tozApplyType="
2084
+ ><img src="/images/old/btn_ok.png"
2085
+ /></a>
2086
+ </td>
2087
+ </tr>
2088
+ </table>
2089
+ </td>
2090
+ <td valign="top" style="padding-left: 10px; padding-top: 200px; width: 185px">
2091
+ <span id="idBoothSearch">
2092
+ <a href="https://work.toz.co.kr/branchSearch?page=1&onesBranchType=TMC" target="_blank">
2093
+ <img src="/images/partner/btn_findjj.gif" />
2094
+ </a>
2095
+ </span>
2096
+ </td>
2097
+ </tr>
2098
+ </table>
2099
+ </td>
2100
+ </tr>
2101
+ <!-- 컨텐츠 영역 : 끝 -->
2102
+ </table>
2103
+
2104
+ <!--
2105
+ 레이어 안보이게 하기 <div class="layer-tsc-business none"> Add class="none"
2106
+ -->
2107
+
2108
+ <!-- bottom -->
2109
+
2110
+ <center>
2111
+ <div style="margin-top: 20px">
2112
+ <img width="100%" height="27px" src="/images/partner/bottom_line.gif" />
2113
+ <img
2114
+ src="/images/partner/bottom_1.gif"
2115
+ usemap="#map_bottom_1"
2116
+ style="position: relative; top: -20px; left: -280px"
2117
+ />
2118
+ <map name="map_bottom_1">
2119
+ <area
2120
+ alt="회사소개"
2121
+ coords="0,0,36,9"
2122
+ href="javascript:alert('TOZ그룹페이지가 리뉴얼 오픈 준비중입니다.\n새로운 모습으로 곧 인사드리겠습니다.')"
2123
+ target="_blank"
2124
+ />
2125
+ <area alt="사업제휴" coords="58,0,98,9" href="https://www.toz.co.kr/customerCenter/partner" target="_blank" />
2126
+ <area
2127
+ alt="채용정보"
2128
+ coords="120,0,155,9"
2129
+ href="javascript:open_popup( 'http://www.toz.co.kr/recruit/recruitList', 1140, 900 )"
2130
+ target="_blank"
2131
+ />
2132
+ <area
2133
+ alt="이용약관"
2134
+ coords="180,0,216,9"
2135
+ href="javascript:open_popup( 'https://www.toz.co.kr/rule/policy/1', 600, 700 )"
2136
+ target="_blank"
2137
+ />
2138
+ <!-- <area alt="개인정보보호정책" coords="239,0,310,9" href="http://www.toz.co.kr/member/security.htm" target="_blank"> -->
2139
+ <area
2140
+ alt="개인정보취급방침"
2141
+ coords="239,0,310,9"
2142
+ href="javascript:open_popup( 'https://www.toz.co.kr/rule/privacy/1', 600, 700 )"
2143
+ target="_blank"
2144
+ />
2145
+ <!-- <area alt="개인정보취급방침" coords="333,0,399,9" href="http://www.toz.co.kr/member/privaterule.htm" tabindex="_blank"> -->
2146
+ </map>
2147
+ </div>
2148
+ <div id="layoutBottom">
2149
+ <img src="/images/partner/bottom_3.gif" style="position: relative; top: -20px; left: -80px" />
2150
+ </div>
2151
+ </center>
2152
+
2153
+ <!-- google analytics for (http)partner.toz.co.kr -->
2154
+ <script type="text/javascript">
2155
+ function open_popup(url, width, height) {
2156
+ var popOption = 'width=' + width + ', height=' + height + ', resizable=no, scrollbars=yes, status=no;' //팝업창 옵션(optoin)
2157
+ window.open(url, '', popOption)
2158
+ }
2159
+ var _gaq = _gaq || []
2160
+ _gaq.push(['_setAccount', 'UA-23075111-3'])
2161
+ _gaq.push(['_trackPageview'])
2162
+
2163
+ ;(function () {
2164
+ var ga = document.createElement('script')
2165
+ ga.type = 'text/javascript'
2166
+ ga.async = true
2167
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'
2168
+ var s = document.getElementsByTagName('script')[0]
2169
+ s.parentNode.insertBefore(ga, s)
2170
+ })()
2171
+ </script>
2172
+ <!-- // google analytics for (http)partner.toz.co.kr -->
2173
+ <!-- // bottom -->
2174
+
2175
+ <!-- s : layer -->
2176
+ <script>
2177
+ const jobkrea = document.getElementById('jobkreaClose')
2178
+ if (jobkrea) {
2179
+ jobkrea.onclick = function () {
2180
+ document.getElementById('jobKrea').style.display = 'none'
2181
+ }
2182
+ }
2183
+
2184
+ // $('.layer-tsc-business .btn-close').on('click', function(){
2185
+ // $('.layer-tsc-business').addClass('none');
2186
+ // })
2187
+ </script>
2188
+ <!-- e : layer -->
2189
+ </body>
2190
+ </html>