-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
154 lines (125 loc) · 4.08 KB
/
index.html
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
152
153
154
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Voltage, the musical enterprise</title>
<LINK REL=StyleSheet HREF="styles.css" TYPE="text/css" MEDIA=screen>
<meta name="description" content="Voltage Music Establishment" />
<meta name="keywords" content="Voltage Chicago, Rock, Band, Bouncey, Electronics, Electronixxx, Dolphin Pixxx" />
<meta name="rating" content="General" />
<meta name="ROBOTS" content="All" />
<meta name="revisit-after" content="14 days" />
<script src="scroll.js"></script>
<script language="javascript">
<!--
function microsoftkeypress(){
//alert("key pressed:" + event.keyCode);
unitedbrowserkeypress(event.keyCode);
}
function nutscrapekeypress(e)
{
// alert("key pressed:" + e.which);
unitedbrowserkeypress(e.which);
}
//deal with netscape b.l.u.
if(navigator.appName == "Netscape"){
document.captureEvents(Event.KEYPRESS);
document.onkeypress = nutscrapekeypress;
}
else document.onkeypress = microsoftkeypress;
function unitedbrowserkeypress(keyPressed){
//keyPressed = event.keyCode;
//document.write(event.keyCode);
if((keyPressed == 116) || (keyPressed == 84)){ //tour
window.location = ("voltageshows.html");
}
else if((keyPressed == 115) || (keyPressed == 83)){ //synth kits
window.location = ("synthkits.html");
}
else if((keyPressed == 105) || (keyPressed == 73)){ //i -- band info
window.location = ("voltageinfo.html");
}
else if((keyPressed == 104) || (keyPressed == 72)){ //hot lixx
window.location = ("voltagelixx.html");
}
else if((keyPressed == 65) || (keyPressed == 97)){ //action shots
window.location = ("voltagepics.html");
}
else if((keyPressed == 67) || (keyPressed == 99)){ //contact
window.location = ("voltagecontact.html");
}
else if((keyPressed == 103) || (keyPressed == 71)){//get up on the list
// window.location = ("voltagelist.html");
}
else if((keyPressed == 108) || (keyPressed == 76)){//Links
window.location = ("voltagelinks.html");
}//end if
else if((keyPressed == 113) || (keyPressed == 81)){//Quit
window.location = ("http://www.google.ca/search?sourceid=navclient&ie=UTF-8&oe=UTF-8&q=chicken+salad+duck+mallard");
}//end if
else if((keyPressed == 102) || (keyPressed == 70)){ //Forward || f
PerformScroll(-50);
}
else if((keyPressed == 98) || (keyPressed == 66)){ //Backward || b
PerformScroll(50);
}
}
-->
</script>
</head>
<body>
<div id="divTelnet">
<div id="divHeader">
Welcome to VOBIS, Voltage Online Bidnizz <br>Interface Service (2002-2007 RIP)
</div>
<div id="divVobis">
VOBIS
</div>
<div id="divCenterContent" style="padding-top: 20px">
<table>
<tr>
<td><a href="voltageshows.html">T ></a> </td>
<td>Tour</td>
</tr>
<tr>
<td><a href="synthkits.html">S ></a> </td>
<td>Synthesizer Kits</td>
</tr>
<tr>
<td><a href="voltageinfo.html">I ></a> </td>
<td>Band Information</td>
</tr>
<tr>
<td><a href="voltagelixx.html"> H ></a> </td>
<td>Hot Lixx</td>
</tr>
<tr>
<td><a href="voltagepics.html">A ></a> </td>
<td>ASCII Action Shots</td>
</tr>
<tr>
<td><a href="voltagecontact.html">C ></a> </td>
<td>Contact</td>
</tr>
<!--
<tr>
<td><a href="voltagelist.html">G ></a> </td>
<td>Get up on that Mailing List</td>
</tr>
-->
<tr>
<td><a href="voltagelinks.html">L ></a> </td>
<td>Links</td>
</tr>
<tr>
<td><a href="http://www.google.ca/search?sourceid=navclient&ie=UTF-8&oe=UTF-8&q=chicken+salad+duck+mallard">Q ></a> </td>
<td>Quit</td>
</tr>
</table>
</div><!-- end divCenteredContent -->
<div id="divFooter">
what the f (S, B, H, A, C, G, L, Q)
<img src="cursor.gif" width="7" height="13">
</div>
</div> <!-- end divTelnet -->
</body>
</html>