1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<html> <head> <title>ÀÚ»ê°ü¸® Á¤Ç°µî·Ï</title> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr"> <link href="../css/style.css" rel="stylesheet" type="text/css"> </head> <script>
function test(){
parent.alert("qweqet");
}
function cdkeyProcess(){
var cdkey = document.getElementById("sCDKey");
if(cdkey.value == ""){ alert("Á¤Ç°¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä."); cdkey.focus(); return; }
if(cdkey.value.length !== 12){ alert("Á¤Ç°¹øÈ£ 12ÀÚ¸®¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä."); cdkey.focus(); return; }
rgstFrm.submit(); }
</script>
<body topmargin="0" leftmargin="0" >
<iframe name='rgst_ifm' width='0' height='0' style="border:0px;"></iframe>
<table width="240" height="320" border="0" cellspacing="0" cellpadding="0" align="center"> <form name='rgstFrm' method='post' action='pdargstProcess_pda.php'> <tr> <td height="60" colspan="2"> <img src="http://www.mijinsoft.co.kr/html/ProgramRegist/img/logo.jpg"> </td> </tr> <tr><td height="2" colspan="2" bgcolor="#3f8ff0"></td></tr> <tr> <td height="60" colspan="2" align="center"> <font size="2"><br>Á¤Ç°¹øÈ£ 12ÀÚ¸®¿Í »ç¿ëÀÚ¸íÀ» ÀÔ·Â ÈÄ<br><br><b>[Àü¼Û]</b>¹öưÀ» ´·¯ÁÖ¼¼¿ä</font> <!--<input type="hidden" name="sCDKey" id="sCDKey" value="<?/*=$_POST[sCDKey]*/?>"> <input type="hidden" name="sAppCode" id="sAppCode" value="<?/*=$_POST[sAppCode]*/?>">--> <input type="hidden" name="parm_app_code" id="parm_app_code" value="<?=$_REQUEST['parm_app_code']?>"><!-- ÇÁ·Î±×·¥ÄÚµå--> <input type="hidden" name="parm_pc_name" id="parm_pc_name" value="<?=$_REQUEST['parm_pc_name']?>"><!-- PC¸í--> <input type="hidden" name="parm_os_type" id="parm_os_type" value="<?=$_REQUEST['parm_os_type']?>"><!-- OS--> <input type="hidden" name="parm_screen_w" id="parm_screen_w" value="<?=$_REQUEST['parm_screen_w']?>"><!-- ½ºÅ©¸°³ÐÀÌ--> <input type="hidden" name="parm_screen_h" id="parm_screen_h" value="<?=$_REQUEST['parm_screen_h']?>"><!-- ½ºÅ©¸°³ôÀÌ--> <input type="hidden" name="parm_user_mac" id="parm_user_mac" value="<?=$_REQUEST['parm_user_mac']?>"><!-- MACÁÖ¼Ò--> </td> </tr> <tr><td height="1" colspan="2" bgcolor="#bebebe"></td></tr> <tr width="240"> <td height="30" align="left" style = "vertical-align:middle;"> <font size="2%" color="black"><b> Á¤Ç°¹øÈ£ : </b></font> </td> <td> <input type="text" name="sCDKey" id="sCDKey" style="width:150px; height:30px; font-size:12pt; font-weight:bold;" maxlength="12"> </td> </tr> <tr width="240"> <td height="30" align="left" style = "vertical-align:middle;"> <font size="2%" color="black"><b> »ç¿ëÀÚ¸í : </b></font> </td> <td> <input type="text" name="sName" id="sName" style="width:150px; height:30px; font-size:12pt; font-weight:bold;" maxlength="20"> </td> </tr> <tr><td height="1" colspan="2" bgcolor="#bebebe"></td></tr> <tr> <td height="25" align="center" colspan = "2"> <input type="submit" value="Àü ¼Û"> </td> </tr>
<!-- <td height="1" colspan="2" bgcolor="#bebebe"></td></tr> <td width="250" height="85" align="left"> <tr> <font size="1%" color="black"><b>Á¤Ç°¹øÈ£ : </b></font> <input type="text" name="sCDKey" id="sCDKey" style="width:128px; height:25px; font-size:11pt; font-weight:bold;" maxlength="12"> </tr> </td> <font size="1%" color="black"><b>»ç¿ëÀÚ¸í : </b></font> <input type="text" name="sName" id="sName" style="width:80px; height:25px; font-size:11pt; font-weight:bold;" maxlength="20"><font size="1%" color="black"> ex)±è´ë¸®
<td width="50" align="center"><input type="submit" value="Àü¼Û"></td> </tr> --> <tr> <td colspan="2" align="center" bgcolor="#f1f1f1"> <p style="font-size:12px;">¿¥Á¦À̼ÒÇÁÆ® Á¦Ç°À»<br />ÀÌ¿ëÇØ Áּż °¨»çÇÕ´Ï´Ù.</p> <p style="font-size:13px; font-weight:bold;">µµÀÔ¹®ÀÇ : <font color="#ff5400">02) 401-5121</font></p> </td> </tr> </form> </table> </body> </html>
|