blob: be3527beccbf7239fc870e58c50dd5cdef07fa31 (
plain)
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
|
<!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=gb2312" />
<title>�ޱ����ĵ�</title>
<link href="css/nms.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
function choseNode(v){
for(var i=1;i<=5;i++){
if(v==i){
document.getElementById("node"+i).className="nodeSelStyle";
document.getElementById("rightNodes"+i).style.display="block";
}
else{
document.getElementById("node"+i).className="nodeStyle";
document.getElementById("rightNodes"+i).style.display="none";
}
}
}
function switchLeft(){
var switchimage=document.getElementById("switchlefts").src.split("/");
var every=switchimage[switchimage.length-1];
if(every=="an1.jpg"){
document.getElementById("middleRight").className="middle_rightswitch";
document.getElementById("switchlefts").src="images/an2.jpg";
document.getElementById("leftNodes").style.display="none";
}
else{
document.getElementById("middleRight").className="middle_right";
document.getElementById("switchlefts").src="images/an1.jpg";
document.getElementById("leftNodes").style.display="block";
}
}
</script>
</head>
<body style="overflow:scroll;overflow-x:hidden;overflow-y:hidden;">
<!--������ʼ-->
<div class="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td class="top_img"><img src="images/top.jpg" / ></td>
</tr>
<tr>
<td height="5" class="top_color1"></td>
</tr>
<tr>
<td height="20" class="top_color2" ><div id="nav">
<ul>
<li><a href="#">ϵͳ��ҳ |</a></li>
<li><a href="#">ϵͳ���� |</a></li>
<li><a href="#">ϵͳָ�� |</a></li>
<li><a href="#">�˳�ϵͳ |</a></li>
</ul>
</div>
</td>
</tr>
</table>
</div>
<!--��������-->
<!--�м䲿�ֿ�ʼ-->
<div class="middle">
<div class="middle_mid" align="cneter" >
<iframe src="middle.html" scrolling="auto" height="100%" width="100%" frameBorder="0" ></iframe>
</div>
</div>
<!--�м䲿�ֽ���-->
<div style="clear:both;"></div>
</body>
</html>
|