index_top2.htm
4.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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=<?php echo $cfg_soft_lang; ?>">
<title>dedecms</title>
<link href="css/base.css" rel="stylesheet" type="text/css">
<script language='javascript'>
var preFrameW = '206,*';
var FrameHide = 0;
var curStyle = 1;
var totalItem = 9;
function ChangeMenu(way)
{
var addwidth = 10;
var fcol = top.document.all.btFrame.cols;
if(way==1) addwidth = 10;
else if(way==-1) addwidth = -10;
else if(way==0){
if(FrameHide == 0){
preFrameW = top.document.all.btFrame.cols;
top.document.all.btFrame.cols = '0,*';
FrameHide = 1;
return;
}else{
top.document.all.btFrame.cols = preFrameW;
FrameHide = 0;
return;
}
}
fcols = fcol.split(',');
fcols[0] = parseInt(fcols[0]) + addwidth;
top.document.all.btFrame.cols = fcols[0]+',*';
}
function ChangeMenuFF(way)
{
var addwidth = 10;
alert(window.parent.document.getElementsByTagName('btFrame').cols);
var fcol = window.parent.document.getElementsByTagName('btFrame').cols;
if(way==1) addwidth = 10;
else if(way==-1) addwidth = -10;
else if(way==0){
if(FrameHide == 0){
preFrameW = window.parent.document.getElementsByTagName('btFrame').cols;
window.parent.document.getElementsByTagName('btFrame').cols = '0,*';
FrameHide = 1;
return;
}else{
window.parent.document.getElementsByTagName('btFrame').cols = preFrameW;
FrameHide = 0;
return;
}
}
fcols = fcol.split(',');
fcols[0] = parseInt(fcols[0]) + addwidth;
window.parent.document.getElementsByTagName('btFrame').cols = fcols[0]+',*';
}
function mv(selobj,moveout,itemnum)
{
if(itemnum==curStyle) return false;
if(moveout=='m') selobj.className = 'itemsel';
if(moveout=='o') selobj.className = 'item';
return true;
}
function changeSel(itemnum)
{
curStyle = itemnum;
for(i=1;i<=totalItem;i++)
{
if(document.getElementById('item'+i)) document.getElementById('item'+i).className='item';
}
document.getElementById('item'+itemnum).className='itemsel';
}
</script>
<style>
body {
padding:0px; margin:0px;
}
a:link,a:visited {
color:#ffffff;
text-decoration: underline;
}
#lpart {
float:right;
height:53px;
line-height:53px;
margin:0px;
padding:0px;
}
#rpart {
float:right;
width:450px;
height:53px;
margin:0px;
padding:0px;
margin-left:5px;
background:url(../images/style2tbgr.gif);
}
#tpa {
color: #009933;
margin:0px;
float:left;
}
#tpa dd {
margin:0px;
padding:0px;
float:left;
margin-right:2px;
color:#ffffff;
padding:17px 0px 0px 5px;
}
#tpa dd.img {
padding:17px 0px 0px 5px;
}
</style>
</head>
<body bgColor='#ffffff'>
<table width="100%" border="0" cellpadding="0" cellspacing="0" background="../images/topbg2.gif">
<tr>
<td width='20%'><img src="images/df_dedetitle2.gif" alt="dedecms logo" title="dedecms logo" /></td>
<td width='80%'>
<div id='rpart'>
<dl id="tpa">
<dd class='img'><a href="javascript:ChangeMenu(-1);"><img vspace="5" src="../images/arrl.gif" border="0" width="5" height="8" alt="缩小左框架" title="缩小左框架" /></a></dd>
<dd class='img'><a href="javascript:ChangeMenu(0);"><img vspace="3" src="../images/arrfc.gif" border="0" width="12" height="12" alt="显示/隐藏左框架" title="显示/隐藏左框架" /></a></dd>
<dd class='img' style="margin-right:10px;"><a href="javascript:ChangeMenu(1);"><img vspace="5" src="images/arrr.gif" border="0" width="5" height="8" alt="增大左框架" title="增大左框架" /></a></dd>
<dd class='txt'>
<a href="index_menu.php" target="menu">主菜单</a> |
<a href="catalog_menu.php" target="menu">内容发布</a> |
<a href="index_body.php" target="main">系统主页</a> |
<a href="../index.php?upcache=1" target="_blank">网站主页</a> |
<a href="../member" target="_blank">会员中心</a> |
<a href="exit.php" target="_top">注销</a>
</dd>
</dl>
</div>
<div id='lpart'>
您好:<span class="username"><?php echo $cuserLogin->getUserName(); ?> </span>,欢迎使用DedeCMS!
</div>
</td>
</tr>
</table>
</body>
</html>