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
|
<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="300" height="273" border="1" cellspacing="0" cellpadding="0" align="center" style="border:1px solid #efefef;"> <form name='rgstFrm' method='post' action='pdargstProcess.php' >
<tr> <td height="35" colspan="4" align="center"> <!-- <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ÁÖ¼Ò--> <b>¡ÚÁ¤Ç°¹øÈ£ 12ÀÚ¸®¸¦ ÀÔ·Â ÈÄ<br> Àü¼Û¹öưÀ» ´·¯ ÁÖ¼¼¿ä.</b> </td> </tr> <tr> <td height="40" align="center" valign="middle" bgcolor="#627aaf#"> <input type="text" name="sCDKey" id="sCDKey" style="width:150px;height:32px;font-size:13pt;font-weight:bold;" maxlength="12"> <input type="submit" value="Àü¼Û"> </td> </tr> <tr> <td height="26" align="center"> <font size="2">¹ÌÁø¼ÒÇÁÆ®Á¦Ç°À» ÀÌ¿ëÇØ Áּż °¨»çÇÕ´Ï´Ù.</font> </tr> </form> </table> </body> </html>
|