it would be great if the site was based on javascript. Eg, javascript:back. then tom wouldnt need to edit so many things. I found this code a while ago:
Code:
<script LANGUAGE="JavaScript" FOR="window" EVENT="onload">
Load();
</script><script>
var i=0;
var nTips=75;
function Load() {
var d = new Date();
i = ((d.getMonth() * 31) + d.getDate()) %nTips;
if (i==null) i=0;
eval("document.all.Tip"+i+".style.display=''");
}
function goNext()
{
eval("document.all.Tip"+i+".style.display='none'");
i=(((i%nTips)+1)%nTips);
eval("document.all.Tip"+i+".style.display=''");
}
function showName() {
window.status = event.srcElement.innerText;
return true;
}
</script>
This symbolizes "Tip#" as a DIV class to load from.
Anyways, I've created my own little site that loads FROM twokinds on my desktop without typing in 2kinds.com all the time.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<!-- Title and Refresh Data -->
<title>Twokinds Deskload</title>
<meta http-equiv="refresh" content="60">
<style type="text/css">
BODY { background-color: black; }
</style>
<!-- RSS data -->
<link rel="alternate" type="application/rss+xml" title="RSS" href=" http://2kinds.com/tk_rss.php">
</head>
<body>
<table align="Center">
<td rowspan="3" colspan="2"><iframe src="http://2kinds.com/todayscomic.htm" height="830" width="638" marginheight="0" marginwidth="0" scrolling="auto" name="mainframe" frameborder="2" style="border: #000000 2px solid"></iframe>
</td>
</table>
</body>
See the problem is, i'm trying to fit it with a First Comic button and a Previous Comic button. I'd have to constantly change them. Well, except for the first comic button. What do you think tom, could twokinds base on javascript? It would be easier, for you and for me.
</html>[/code][/code]