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
|
MIME-Version: 1.0
Content-Type: text/html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
<head>
<TITLE>IT System Availability Report</TITLE>
<STYLE TYPE ='text/css'>
.appHeader {
color: #000000;
font-family: Arial, Sans-Serif;
font-size: 12px;
font-weight: bold;
padding-left: 10px;
padding-top: 7px;
border-width: 10px;
border-color: #FFFFFF;
border-style:none;
border-left-width: 10px;
border-left-color: #8CAAE6;
border-left-style: solid;
}
.Head {
color: Turquoise;
background-color: White;
font-family: Verdana, Helvetica, San-Serif;
font-size: 20px;
font-weight: bold;
text-decoration: underline;
}
.SubSubHead {
color: RoyalBlue;
background-color: CornSilk;
font-family: Verdana, Helvetica, San-Serif;
font-size: 11px;
font-weight: bold;
}
.SubHead {
color: RoyalBlue;
background-color: CornSilk;
font-family: Verdana, Helvetica, San-Serif;
font-size: 13px;
font-weight: bold;
text-decoration: underline;
}
.SubDetail {
color: Black;
font-family: Verdana, Helvetica, San-Serif;
font-size: 11px;
background-color: CornSilk;
}
.Up99 {
color: DarkGreen;
text-align: Center;
background-color: CornSilk;
font-family: Verdana, Helvetica, San-Serif;
font-size: 11px;
font-weight: bold;
}
.Up95 {
color: DarkBlue;
text-align: Center;
background-color: CornSilk;
font-family: Verdana, Helvetica, San-Serif;
font-size: 11px;
font-weight: bold;
}
.Up90 {
color: Orange;
text-align: Center;
background-color: CornSilk;
font-family: Verdana, Helvetica, San-Serif;
font-size: 11px;
font-weight: bold;
}
.UpNo {
color: Red;
text-align: Center;
background-color: CornSilk;
font-family: Verdana, Helvetica, San-Serif;
font-size: 11px;
font-weight: bold;
}
.Display-Block { display:'block' }
.Display-None { display:'none' }
</STYLE>
</head>
<body onLoad=
"Day.style.display='none';
Week.style.display='none';
Month.style.display='none';
Quarter.style.display='none';" >
<table width='100%' border='0' cellspacing='0' cellpadding='0'>
<tr><td bgcolor='#FFFFFF'>
<img border='0' src='http://www.xxxx.com/docs/TEMPLATE/204/xxxx_logo.gif' alt='Put your logo here'></a></td><td class='Head'>XXXX IT System Availability</td></tr>
</table>
<P>
<P>
<HR width='80%'>
<P>
<##SUMMARY##>
<p>
<CENTER>
<table width='60%' border='1' cellspacing='0' cellpadding='0'>
<tr>
<td bgcolor='CornSilk' onMouseOver="Quarter.style.display='block'"
onMouseOut="Quarter.style.display='none'">Quarterly Detail</td>
<td bgcolor='CornSilk' onMouseOver="Month.style.display='block'"
onMouseOut="Month.style.display='none'">Monthly Detail</td>
<td bgcolor='CornSilk' onMouseOver="Week.style.display='block'"
onMouseOut="Week.style.display='none'">Weekly Detail</td>
<td bgcolor='CornSilk' onMouseOver="Day.style.display='block'"
onMouseOut="Day.style.display='none'">Daily Detail</td>
</tr>
</table>
</CENTER>
<p>
<div id="Day">
<##DAYDETAIL##>
</div>
<p>
<div id="Week">
<##WEEKDETAIL##>
</div>
<p>
<div id="Month">
<##MONTHDETAIL##>
</div>
<p>
<div id=Quarter>
<##QUARTERDETAIL##>
</div>
</html></body>
|