최초등록
This commit is contained in:
@@ -0,0 +1,141 @@
|
||||
<!--#include virtual="/common/lib/dbcon.asp"-->
|
||||
<!--#include virtual="/common/lib/func.asp"-->
|
||||
<%
|
||||
member_login_chk("/index.asp")
|
||||
%>
|
||||
<!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>
|
||||
<title>문자전송시스템</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="format-detection" content="telephone=no" />
|
||||
<link rel="Stylesheet" type="text/css" href="/common/css/all.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/common/css/radios.min.css" />
|
||||
<!--[if lte IE 8]>
|
||||
<link rel="stylesheet" type="text/css" href="/common/css/ie8.css" />
|
||||
<![endif]-->
|
||||
<script type="text/javascript" src="/common/js/modernizr.js"></script>
|
||||
<%If Left(LCase(Request.ServerVariables("PATH_INFO")),10)="/index.asp" Then%>
|
||||
<link rel="Stylesheet" type="text/css" href="/common/css/main_layout.css" />
|
||||
<%else%>
|
||||
<link rel="stylesheet" type="text/css" href="/common/css/sub_layout.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/common/css/sub_design.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/common/css/content.css" />
|
||||
<%End If %>
|
||||
<script type="text/javascript" src="/common/js/common_design.js"></script>
|
||||
<script type="text/javascript" src="/common/js/common_dev.js"></script>
|
||||
<script type="text/javascript" src="/common/js/jquery-1.4.3.min.js"></script>
|
||||
<script type="text/javascript" src="/common/js/pie-chart.js" ></script>
|
||||
<script type="text/javascript">
|
||||
//마스크팝업 설정
|
||||
$(document).ready(function(){
|
||||
|
||||
$(".popbox").css("display","none");
|
||||
$(".popcls").css("cursor","pointer");
|
||||
|
||||
$('#mask, .popcls').click(function () {
|
||||
closeArea();
|
||||
});
|
||||
});
|
||||
|
||||
function closeArea(){
|
||||
$("#mask").hide();
|
||||
$(".maskpopbox").css("display","none");
|
||||
$(".popbox").css("display","none");
|
||||
}
|
||||
|
||||
function clickArea(idx, num){
|
||||
var obj = document.getElementById(idx);
|
||||
|
||||
$(".popbox").css("display","none");
|
||||
$(idx).children("div.popbox").css("display","none");
|
||||
$(idx).children("div.popbox").eq(num).css("display","block");
|
||||
|
||||
var maskHeight = $(document).height();
|
||||
var maskWidth = $(window).width();
|
||||
|
||||
$('#mask').css({'width':maskWidth,'height':maskHeight});
|
||||
$('#mask').fadeTo("fast",0.8);
|
||||
|
||||
$(idx).show();
|
||||
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$('#demo-pie-1').pieChart({
|
||||
barColor: '#fff',
|
||||
trackColor: '#87a8c7',
|
||||
lineCap: 'round',
|
||||
lineWidth: 4,
|
||||
size: 132,
|
||||
animate:{
|
||||
duration: 1000,
|
||||
enabled: true
|
||||
},
|
||||
onStep: function (from, to, percent) {
|
||||
//$(this.element).find('.pie-value').text(Math.round(percent) + '');
|
||||
var per = eval( Math.round(percent) );
|
||||
var value = eval( $('#span_pivalue').data("nowcount") )-eval( $('#span_pivalue').data("percent") );
|
||||
if(value < 0){value = 0;}
|
||||
value += per;
|
||||
|
||||
$(this.element).find('.pie-value').text( value+'' );
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
checkSkin();
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
<script type="text/JavaScript">
|
||||
<!--
|
||||
function MM_preloadImages() { //v3.0
|
||||
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
|
||||
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
|
||||
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
|
||||
}
|
||||
|
||||
function MM_swapImgRestore() { //v3.0
|
||||
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
|
||||
}
|
||||
|
||||
function MM_findObj(n, d) { //v4.01
|
||||
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
|
||||
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
|
||||
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
|
||||
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
|
||||
if(!x && d.getElementById) x=d.getElementById(n); return x;
|
||||
}
|
||||
|
||||
function MM_swapImage() { //v3.0
|
||||
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
|
||||
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<%
|
||||
If session("a_level") <> "" Then
|
||||
%>
|
||||
<!-- <link rel="Stylesheet" type="text/css" href="/content/board/<%=session("a_level")%>/css/common.css" /> -->
|
||||
<%
|
||||
End if
|
||||
%>
|
||||
</head>
|
||||
|
||||
<body id="skin_c1">
|
||||
<!-- 스킵네비게이션 -->
|
||||
<div>
|
||||
<a href="#contents" class="sknavi">본문으로 바로가기</a>
|
||||
<a href="#menu_navi" class="sknavi">대메뉴로 바로가기</a>
|
||||
<a href="#contents" class="sknavi">본문으로 바로가기</a>
|
||||
</div>
|
||||
<!-- //스킵네비게이션 -->
|
||||
<div id="wrapper">
|
||||
<!-- 상단영역 -->
|
||||
<!--#include virtual="/common/file/menu.asp"-->
|
||||
<!-- //상단영역 -->
|
||||
<div id="mask" style="display:none;width:100%;height:100%;opacity:0.8;"></div>
|
||||
Reference in New Issue
Block a user