123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!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=utf-8" />
- <title>NOTICE</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("portal_out_supp_best", "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() + ";"
- }
-
- function getNotiDetail() {
- /*
- var win_id = "_searchNotice";
- var link = "http://partner.sgcenc.co.kr/supplier/portal/center/SuppNotiDetailPopup.screen?pop_win_id=_searchNotice&seq=70&layerYn=Y";
- //fLayerPop(win_id, link, 810,400, '', '', 'auto');
- window.open(link,win_id,'width=810,height=520,toolbar=no,location=no,status=no,directories=no,menubar=no,scrollbars=no,resizable=no,left=150,top=100');
- */
- var win_id = "_searchNotice";
- var url = "/html/portal_out_supp_best_dtl.html";
- window.open(url,win_id,'width=720,height=870,toolbar=no,location=no,status=no,directories=no,menubar=no,scrollbars=yes,resizable=no,left=150,top=100');
- //window.open(url, "_blank", "portal_out_supp_best_dtl", "300", "550");
- }
- </script>
- </head>
- <body style="padding:0px; margin:0px;">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <a onClick="getNotiDetail()" style="cursor: pointer;">
- <img src="./img/pop_notice_02.jpg" alt="out best supplier" width="350" height="270"/>
- </a>
- </td>
- </tr>
- <tr>
- <td>
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <a onClick="getNotiDetail()" style="cursor: pointer;">자세히 보기</a>
- </tr>
- <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>
|