blob: f623c7e7b8d2869f3db443c6ff7b419ae69b9df6 (
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
|
<html>
<head>
<link rel="stylesheet" href="/platdoc/platter.css">
<script language="javascript">
<!--
var sources = new Array( %TOTALCOVERS% );
var locations = new Array( %TOTALCOVERS% );
%SOURCES%
%LOCATIONS%
var coverIndex = Math.round(Math.random()*(locations.length-1));
function nextCover() {
var cover = document.getElementById("cover");
var coverno = document.getElementById("coverno");
var coversource = document.getElementById("coversource");
cover.src = locations[coverIndex];
coverno.firstChild.data = coverIndex+1;
coversource.firstChild.data = sources[coverIndex];
coverIndex++;
if (coverIndex >= locations.length) coverIndex = 0;
}
//-->
</script>
</head>
<body background="/platdoc/img/bars.png" topmargin=0 leftmargin=0 rightmargin=0 >
<script language="javascript">
if (top.location == document.location)
document.write('<a href="front.plx"><img src="/platdoc/img/logo.gif" hspace=0 border=0 alt="Front Page"></a>');
</script>
<table>
<tr valign="top">
<td height="100%">%PLAYBUTTON%%INFOBUTTON%</td>
<td width="100%"> %HTMLALBUM%%FOREIGN%%YEAR%</td></tr></table>
<table width="100%">
<tr valign="top">
<td>
<ol>%TRACKS%</ol>
</td>
<td align="right" rowspan=2>
%COVER%
</td>
<tr valign="bottom">
<td>
<small>%HOST%</small>
</td>
</tr>
<tr>
<td colspan=2>
<hr size=1 align=left color=white>
<a name="info" style="color: white"><i class="title">Info</i>
%INFO%
</td>
</tr>
</table>
</body>
</html>
|