12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
- <title>협력업체 대금 신청 안내</title>
- <script language="javascript" src="/js/jquery/jquery-1.11.0.js"></script>
- <script language="javascript">
- jQuery(document).ready(function()
- {
- $("img[id='btn_close']").click(function(){
- if($("input[id='chk_today']").is(":checked"))
- {
- setCookie("pop_141219", "no", 1);
- }
- window.close();
- });
- });
-
- /**
- * Cookie 저장
- */
- function setCookie(name, value, expiredays)
- {
- var todayDate = new Date();
- todayDate.setDate(todayDate.getDate() + expiredays);
- document.cookie = name + "=" + escape(value) + "; path=/; expires="+ todayDate.toGMTString() + ";"
- }
- </script>
- </head>
- <body style="padding:0px; margin:0px;">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="./img/pop_notice_01.jpg" alt="협력업체 대금 신청 안내" width="541" height="423" /></td>
- </tr>
- <tr>
- <td>
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr style="background-color:#46659b; line-height:27px;">
- <td align="left" style="padding-left:10px">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td style="color:#FFFFFF; font-size:11px; font-family:dotum;padding-top:4px"> 오늘은 그만보기</td>
- <td valign="middle"><input type="checkbox" id="chk_today"/></td>
- </tr>
- </table>
- </td>
- <td width="30"><img src="./img/pop_close.gif" alt="닫기" border="0" id="btn_close" style="cursor:pointer;"/></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|