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
|
<?php include_once("./_common2.php"); ?> <html lang="ko"> <head> <title>¿¬ÈޱⰣ ¹è¼Û¾È³»</title> <style> html, body{ margin:0; padding:0; border:0; } </style> </head>
<body>
<!-- ÆË¾÷À̹ÌÁö--> <p style="position:relative;"><img src="./img/popup/notice_delivery.png" alt="2.13(±Ý) ¿ÀÈÄ 3:30ºÐ ÀԱݳ»¿ª±îÁö ¹è¼Û. 2.23(¿ù)ºÎÅÍ Á¤»ó¹è¼Û"></p>
<!-- â´Ý±â--> <form name="cnjform"> <div id="â´Ý±â" style="position:absolute; left:10px; bottom:4px; width:380px; height:30px; line-height:30px; z-index:1;"> <input type="checkbox" name="notice" style="position:relative;"> <span style="font-size:12px; color:#999;">ÇϷ絿¾È ÀÌ Ã¢À» ¿Áö ¾Ê±â</span> <input type="button" value="â´Ý±â" onClick="closeWin()" style="position:absolute; right:0; vertical-align:middle;"></span> </div> </form> </body>
<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("delivery_pop", "no" , 1); // ºÎ¸ðâ¿¡¼ ÁöÁ¤ÇÑ ÄíŰ³×ÀÓ°ú ÀÏÄ¡ ÇØ¾ß ÇÕ´Ï´Ù. top.close(); } </script>
<!-- À§¿¡ â´Ü±â ¹öưÀº ¹Ùµð¿¡ ³Ö¾î¾ß ÇÑ´Ù. --> </html>
|