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
|
<? require_once("../inc/config.php"); $popup = nl2br($a_row[popup]); ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE>::::: ¹ÌÁø¼ÒÇÁÆ® :::::</TITLE> <META http-equiv=Content-Type content="text/html; charset=ks_c_5601-1987"> <LINK href="images/My_style.css" type=text/css rel=stylesheet>
<META content="MSHTML 6.00.2800.1458" name=GENERATOR> <script language='javascript' src='inc/main_java.js'></script> <script language='javascript' src='inc/ch_form.js'></script>
<SCRIPT language="JavaScript"> <!-- function setCookie( name, value, expiredays ) { var todayDate = new Date(); todayDate.setDate( todayDate.getDate() + expiredays ); document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" }
function closeWin() { if ( document.test.chkbox.checked ){ setCookie( "notice0428", "done" ,1 ); } self.close(); }
// --> </SCRIPT> </HEAD> <body bgcolor="white" text="black" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <form name="test"> <table width='100%' height='100%' cellspacing='0' cellpadding='0' border='0' align='center' background='<?echo("../$save_dir/$popup_img")?>'> <tr> <td height='90' align='center'></td> </tr><tr> <td height='230' align='center'> <table width='280' height='170' cellspacing='0' cellpadding='10' border='0' class='all_line'> <tr> <td colspan='2'> <font size='2'><?echo($popup)?></font> </td> </tr> </table> </td> </tr><tr> <td height='80' align='center'><INPUT TYPE=CHECKBOX NAME="chkbox">´ÙÀ½ºÎÅÍ ÀÌâÀ» ³ªÅ¸³ªÁö ¾Ê°ÔÇÕ´Ï´Ù. <input type=button value="´Ý±â" onClick="closeWin();"></td> </tr> </table> </form> </body> </html>
|