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
|
<html> <head> <title>¾÷¹«¿ëSWÀü¹®°³¹ß¾÷ü - ¿¥Á¦À̼ÒÇÁÆ®</title> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr" /> <style> body, div, p{ padding:0; margin:0; } body{ background:#efefef; } div, form{ width:479px; text-align:center; } div p label{ font-size:13px; } label, input[type=button]{ cursor:pointer; } </style>
</head>
<body>
<!--<div><img src="./easynotice2.gif" alt="¼ºñ½ºÀϽÃÁß´Ü"></div>--> <div><img src="./easynotice_pop_img.png" alt="¼ºñ½ºÀϽÃÁß´Ü"></div>
<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.cnjform.notice.checked ) // Æû³×ÀÓ cnjform Àº µ¿ÀÏÇØ¾ß ÇÕ´Ï´Ù. setCookie("news1", "no" , 1); // ºÎ¸ðâ¿¡¼ ÁöÁ¤ÇÑ ÄíŰ³×ÀÓ°ú ÀÏÄ¡ ÇØ¾ß ÇÕ´Ï´Ù. top.close(); } </script>
<form name="cnjform"> <div id="â´Ý±â" style="width:479px; height:38px; position:absolute; left:0; top:390px; z-index:1;"> <p> <input type="checkbox" name="notice" id="oneday"> <label for="oneday">ÇϷ絿¾È ÀÌ Ã¢À» ¿Áö ¾Ê±â</label> <input type="button" value="â´Ý±â" onClick="closeWin()"> </p> </div> </form> </body> </html>
|