You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.1 KiB
53 lines
2.1 KiB
<%-- |
|
Document : main_popup |
|
Created on : 2011. 6. 30, 오후 1:36:45 |
|
Author : Kts |
|
--%> |
|
<%@ page contentType="text/html; charset=euc-kr" |
|
import="java.net.URLDecoder" import="java.net.URLEncoder" |
|
import="java.util.Iterator" import="java.util.List" |
|
import="javax.jdo.PersistenceManager" |
|
import="kr.co.kihyun.beans.entity.*" |
|
import="kr.co.kihyun.beans.entity.util.*" |
|
import="kr.co.kihyun.beans.user.HttpSSOLogin" |
|
import="kr.co.kihyun.text.html.ServletUtil" |
|
import="kr.co.kihyun.moumi.MoumiConfig" import="kr.co.kihyun.lang.MString" |
|
import="kr.co.kihyun.lang.MLong" |
|
import="kr.co.kihyun.beans.totsys.menu.MenuBean" |
|
import="kr.co.kihyun.moumi.doc.MDoc" |
|
import="kr.co.kihyun.moumi.report.MReport" |
|
import="kr.co.kihyun.lang.MInteger" |
|
import="kr.co.kihyun.beans.entity.TotDoc"%> |
|
|
|
<%@ include file="/totsys/common/inc/sec/secure.inc.jsp"%> |
|
<html> |
|
<head> |
|
<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 closePopup(value) { |
|
|
|
setCookie("NOTICE", "no" , value); |
|
self.close(); |
|
} |
|
|
|
</script> |
|
<title>자료집계 사용시 유의사항</title> |
|
</head> |
|
<body> |
|
<table> |
|
<jsp:include page="/totsys/common/inc/totper/left/popup.htm" flush="true"/> |
|
</table> |
|
<table> |
|
<td align="left"> |
|
<span style="font-family:휴먼옛체;font-size:10pt; font-weight:bold;color:black; width:100%; height:23 filter:shadow(color="black,direction=125")"><input type="checkbox" name="NOTICE" onClick="closePopup(1);">오늘 하루 안 보기</span></td> |
|
<td> </td> |
|
<td align="left"><span style="font-family:휴먼옛체;font-size:10pt; font-weight:bold;color:black; width:100%; height:23 filter:shadow(color="black,direction=125")"><input type="checkbox" name="NOTICE" onClick="closePopup(7);">일주일간 안 보기</span></td> |
|
</table> |
|
</body> |
|
</html>
|
|
|