-
Notifications
You must be signed in to change notification settings - Fork 1
/
error.jsp
88 lines (83 loc) · 4.19 KB
/
error.jsp
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
<html>
<head>
<title>Forget</title>
<!--mstheme-->
<link rel="stylesheet" href="Img/error/blan1011.css">
<meta name="Microsoft Theme" content="blank 1011">
<script language="JavaScript">
<!--
function FP_swapImg() {//v1.0
var doc = document, args = arguments, elm, n;
doc.$imgSwaps = [];
for (n = 2; n < args.length;
n += 2) {
elm = FP_getObjectByID(args[n]);
if (elm) {
doc.$imgSwaps[doc.$imgSwaps.length] = elm;
elm.$src = elm.src;
elm.src = args[n + 1];
}
}
}
function FP_preloadImgs() {//v1.0
var d = document, a = arguments;
if (!d.FP_imgs) d.FP_imgs = [];
for (var i = 0; i < a.length; i++) {
d.FP_imgs[i] = new Image;
d.FP_imgs[i].src = a[i];
}
}
function FP_getObjectByID(id, o) {//v1.0
var c, el, els, f, m, n;
if (!o)o = document;
if (o.getElementById) el = o.getElementById(id);
else if (o.layers) c = o.layers; else if (o.all) el = o.all[id];
if (el) return el;
if (o.id == id || o.name == id) return o;
if (o.childNodes) c = o.childNodes;
if (c)
for (n = 0; n < c.length; n++) {
el = FP_getObjectByID(id, c[n]);
if (el) return el;
}
f = o.forms;
if (f) for (n = 0; n < f.length; n++) {
els = f[n].elements;
for (m = 0; m < els.length; m++) {
el = FP_getObjectByID(id, els[n]);
if (el) return el;
}
}
return null;
}
// -->
</script>
</head>
<script>
function check() {
document.forms[0].action = "home.html";
document.forms[0].submit();
}
</script>
<body onload="FP_preloadImgs(/*url*/'Img/error/button3.jpg',/*url*/'Img/error/button4.jpg')">
<form method="post">
<p align="left"> <font
color="#800000">
<b><%=request.getAttribute("msg")%>
</b></font></p>
<p> </p>
<p> </p>
<p>
<img border="0" id="img1" onclick="check()" src="Img/error/button2.jpg" height="20" width="100" alt="Back"
onmouseover="FP_swapImg(1,0,/*id*/'img1',/*url*/'Img/error/button3.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img1',/*url*/'Img/error/button2.jpg')"
onmousedown="FP_swapImg(1,0,/*id*/'img1',/*url*/'Img/error/button4.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img1',/*url*/'Img/error/button3.jpg')"
fp-style="fp-btn: Embossed Capsule 1" fp-title="Back"> </p>
<p><br>
</p>
</form>
</body>
</html>