<script type=
"text/javascript"
>
function
openWin( winName ) {
var
blnCookie = getCookie( winName );
var
obj = eval(
"window."
+ winName );
if
( !blnCookie ) {
obj.style.display =
"block"
;
}
}
function
closeWinSetCookie(winName, expiredays) {
setCookie( winName,
"done"
, expiredays);
var
obj = eval(
"window."
+ winName );
obj.style.display =
"none"
;
}
function
closeWin(winName) {
var
obj = eval(
"window."
+ winName );
obj.style.display =
"none"
;
}
function
getCookie( name ) {
var
nameOfCookie = name +
"="
;
var
x = 0;
while
( x <= document.cookie.length )
{
var
y = (x+nameOfCookie.length);
if
( document.cookie.substring( x, y ) == nameOfCookie ) {
if
( (endOfCookie=document.cookie.indexOf(
";"
, y )) == -1 )
endOfCookie = document.cookie.length;
return
unescape( document.cookie.substring( y, endOfCookie ) );
}
x = document.cookie.indexOf(
" "
, x ) + 1;
if
( x == 0 )
break
;
}
return
""
;
}
function
setCookie( name, value, expiredays ) {
var
todayDate =
new
Date();
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name +
"="
+ escape( value ) +
"; path=/; expires="
+ todayDate.toGMTString() +
";"
}
function
setCookieAt00( name, value, expiredays ) {
var
todayDate =
new
Date();
todayDate =
new
Date(parseInt(todayDate.getTime() / 86400000) * 86400000 + 54000000);
if
( todayDate >
new
Date() )
{
expiredays = expiredays - 1;
}
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name +
"="
+ escape( value ) +
"; path=/; expires="
+ todayDate.toGMTString() +
";"
}
function
helpOpen() {
window.open(app.contextPath +
"/help/ko/help.html"
,
'ImportUser'
,
'width=1200,height=800,scrollbars=yes,status=yes'
);
}
</script>
<body>
<div id=
"layout"
style=
"z-index: 10000; position: absolute; width: 400px; left: 140px; top: 130px; display: none;"
>
<form name=
"form1"
style=
"padding:0pt;margin:0pt"
>
<table width=
"100%"
height=
"100%"
cellspacing=
"0"
border=
"0"
bgcolor=
"#f2f2f2"
>
<tbody><tr>
<td valign=
"top"
style=
"padding:0px;"
>
<a href=
"#"
onclick=
"helpOpen()"
><img src=
"${staticURL}/sens-static/images/common/open_help.png"
border=
"0"
></a> </td>
</tr>
<tr>
<td height=
"25"
bgcolor=
"#919191"
align=
"right"
width=
"100%"
style=
"padding-right:10px;"
>
<input type=
"checkbox"
name=
"close"
value=
"OK"
onclick=
"closeWinSetCookie('layout', 1)"
/>하루동안 이 창을 열지 않음
<a href=
"#"
onclick=
"closeWin('layout')"
class=
"font4"
>[닫기]</a>
</td>
</tr>
</tbody></table>
</form>
</div>
</body>