-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigation.htm
More file actions
executable file
·82 lines (74 loc) · 2.86 KB
/
Navigation.htm
File metadata and controls
executable file
·82 lines (74 loc) · 2.86 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Navigate</title>
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<base target="main">
<meta name="Microsoft Theme" content="none">
<meta name="Microsoft Border" content="none">
</head>
<body bgproperties="fixed" bgcolor="#FFFF00">
<dl>
<dt><a href="index_for_frames.htm"><font face="Eurostile">Home</font></a></dt>
<dt><a href="abitaboutme.htm"><font face="Eurostile">Me</font></a></dt>
<dt><font face="Eurostile"><a href="movies.htm">Movies</a></font></dt>
<dt><font face="Eurostile"><a href="downloads.htm">Downloads</a></font></dt>
<dt><font face="Eurostile"><a href="humor.html">Humor</a></font></dt>
<dt><font face="Eurostile"><a href="picture.htm">Pictures</a></font></dt>
<dt><font face="Eurostile"><a href="links.htm">Links</a></font></dt>
<dt><a href="wgbsign.html"><font face="Eurostile">Sign My</font></a></dt>
<dt><font face="Eurostile"> <a href="wgbsign.html">Guestbook</a></font></dt>
<dt><a href="http://mercury.guestworld.com/wgb/wgbview.dbm?owner=genius04" target="_top"><font
face="Eurostile">View My</font></a></dt>
<dt><font face="Eurostile"> <a
href="http://mercury.guestworld.com/wgb/wgbview.dbm?owner=genius04">Guestbook</a></font></dt>
<dt><a href="Comments8.htm"><font face="Eurostile">Comments</font></a></dt>
</dl>
<script LANGUAGE="JavaScript">
song = new Array(15);
title = new Array(15);
song[0] ='agentman.mid'
song[1] ='i_shot_the_sheriff.mid'
song[2] ='inferno.mid'
song[3] ='johnny_b_goode.mid'
song[4] ='kngtridr.mid'
song[5] ='mission1.mid'
song[6] ='P_gun_2.mid'
song[7] ='r-iwannabesedated.mid'
song[8] ='whip_it_better.mid'
song[9] = 'starwars.mid'
song[10] = 'tzone.mid'
song[11] = 'wipeout.mid'
song[12] = 'workinginthecoalmine.mid'
song[13] = 'xfiles.mid'
song[14] = 'ymca.mid'
song[15] = 'WhatIsLove.mid'
title[0] = 'Secret Agent Man'
title[1] = 'I Shot the Sheriff'
title[2] = 'Disco Inferno'
title[3] = 'Johnny B. Goode'
title[4] = 'Knight Rider'
title[5] = 'Mission Impossible'
title[6] = "Peter Gun Theme"
title[7] = 'I Wanna Be Sedated'
title[8] = 'Whip It!'
title[9] = 'Star Wars'
title[10] = 'T Zone'
title[11] = 'Wipe Out!'
title[12] = 'Working in the Coal Mine'
title[13] = 'X Files'
title[14] = 'YMCA'
title[15] = 'What Is Love?'
index = Math.floor(Math.random() * song.length);document.write("<DL>\n");
document.write("<EMBED SRC="+song[index]+" width=70 height=45 autostart=true loop=true BGCOLOR='#000000'");
document.write(' TEXT="#FFFFFF">');
document.write("<BR>");
document.write("Random Midi:\n");
document.write("<font size=4 color=red>");
document.write(title[index]);
document.write("</font>")
document.write("</DL>\n");
</script>
<p><a href="javascript:location.reload()" target="_self">Change Midi</a></p>
</body>
</html>