End of the day and vast improvements on the page
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0039)http://storage.scriptmania.com/h2g2.htm" >http://storage.scriptmania.com/h2g2.htm -->
<HTML><HEAD><TITLE>New Page 1</TITLE>
<META content=en-gb http-equiv=Content-Language>
<META content="text/html; charset=windows-1252" http-equiv=Content-Type>
<META content="Microsoft FrontPage 4.0" name=GENERATOR>
<META content=FrontPage.Editor.Document name=ProgId><!-- Cut-N-Paste JavaScript from ISN Toolbox
Copyright 1999, Infohiway, Inc. Restricted use is hereby
granted (both personal and commercial use OK so long as this code is
not *directly* sold), providing this notice is buried somewhere deep
in your HTML document. A link to http://www.infohiway.com" >http://www.infohiway.com is always
appreciated, but is absolutely and positively not necessary. :-) -->
<SCRIPT language=JavaScript>
<!-- Hide JavaScript from Java-Impaired Browsers
var aMinute = 1000 * 60
var aHour = 60 * aMinute
var aDay = 24 * aHour
var aWeek = aDay * 7
var todayDate = new Date()
var baseDate = todayDate.getTime()
var y2kDay = new Date("January 01, 2000")
var y2kDate = y2kDay.getTime()
var numDays = eval((y2kDate - baseDate) / aDay)
var displayDays = parseInt(numDays)
var numHours = eval(numDays * 24)
var displayHours = parseInt(numHours)
var numMinutes = eval(numHours * 60)
var displayMinutes = parseInt(numMinutes)
var numSeconds = eval(numMinutes * 60)
var displaySeconds = parseInt(numSeconds)
var today = ""
function calculateDays() {
var month = document.forms[0].theMonth
var selectedMonth = month.options[month.selectedIndex].value
var day = document.forms[0].theDay
var selectedDay = day.options[day.selectedIndex].value
var thisDate = selectedMonth + " " + selectedDay + ", 1999"
var specifyDate = new Date(thisDate)
var definedDate = specifyDate.getTime()
var daysLeft = eval((y2kDate - definedDate) / aDay)
var displayDaysLeft = parseInt(daysLeft)
alert("There are " + displayDaysLeft + " days between " + specifyDate.toLocaleString() + " and Y2K.")
}
function calculateHours() {
var month = document.forms[0].theMonth
var selectedMonth = month.options[month.selectedIndex].value
var day = document.forms[0].theDay
var selectedDay = day.options[day.selectedIndex].value
var thisDate = selectedMonth + " " + selectedDay + ", 1999"
var specifyDate = new Date(thisDate)
var definedDate = specifyDate.getTime()
var hoursLeft = eval(((y2kDate - definedDate) / aDay) * 24)
var displayHoursLeft = parseInt(hoursLeft)
alert("There are " + displayHoursLeft + " hours between " + specifyDate.toLocaleString() + " and Y2K.")
}
function calculateMinutes() {
var month = document.forms[0].theMonth
var selectedMonth = month.options[month.selectedIndex].value
var day = document.forms[0].theDay
var selectedDay = day.options[day.selectedIndex].value
var thisDate = selectedMonth + " " + selectedDay + ", 1999"
var specifyDate = new Date(thisDate)
var definedDate = specifyDate.getTime()
var minutesLeft = eval(((y2kDate - definedDate) / aDay) * 24 * 60)
var displayMinutesLeft = parseInt(minutesLeft)
alert("There are " + displayMinutesLeft + " minutes between " + specifyDate.toLocaleString() + " and Y2K.")
}
function calculateSeconds() {
var month = document.forms[0].theMonth
var selectedMonth = month.options[month.selectedIndex].value
var day = document.forms[0].theDay
var selectedDay = day.options[day.selectedIndex].value
var thisDate = selectedMonth + " " + selectedDay + ", 1999"
var specifyDate = new Date(thisDate)
var definedDate = specifyDate.getTime()
var secondsLeft = eval(((y2kDate - definedDate) / aDay) * 24 * 60 * 60)
var displaySecondsLeft = parseInt(secondsLeft)
alert("There are " + displaySecondsLeft + " seconds between " + specifyDate.toLocaleString() + " and Y2K.")
}
function verifyDays() {
var month = document.forms[0].theMonth
var selectedMonth = month.options[month.selectedIndex].value
var day = document.forms[0].theDay
var selectedDay = day.options[day.selectedIndex].value
if (selectedDay == 31 && (selectedMonth == "September" || selectedMonth == "November"))
alert("There are not 31 days in that month!")
}
function daysToY2K() {
var nowDate = new Date()
var today = nowDate.getTime()
var timeToY2K = y2kDate - today
var numWeeks = timeToY2K / aWeek
var theWeeks = ""
if ((numWeeks) < 1) {
theWeeks = 0
} else {
theWeeks = parseInt(numWeeks)
}
var theWeeks = parseInt(numWeeks)
var y2kDays = timeToY2K / aDay
var theDays = ""
if ((y2kDays - (theWeeks * 7)) < 1) {
theDays = 0
} else {
theDays = parseInt(y2kDays - (theWeeks * 7))
}
var y2kHours = timeToY2K / aHour
var theHours = ""
if ((y2kHours - ((theWeeks * 7 * 24) + (theDays * 24))) < 1) {
theHours = 0
} else {
theHours = parseInt(y2kHours - ((theWeeks * 7 * 24) + (theDays * 24)))
}
var y2kMinutes = timeToY2K / aMinute
var theMinutes = ""
if ((y2kMinutes - ((theWeeks * 7 * 24 * 60) + (theDays * 24 * 60) + (theHours * 60))) < 1) {
theMinutes = 0
} else {
theMinutes = parseInt(y2kMinutes - ((theWeeks * 7 * 24 * 60) + (theDays * 24 * 60) + (theHours * 60)))
}
var y2kSeconds = timeToY2K / 1000
var theSeconds = ""
if ((y2kSeconds - ((theWeeks * 7 * 24 * 60 * 60) + (theDays * 24 * 60 * 60) + (theHours * 60 * 60) + (theMinutes * 60))) < 1) {
theSeconds = 0
} else {
theSeconds = parseInt(y2kSeconds - ((theWeeks * 7 * 24 * 60 * 60) + (theDays * 24 * 60 * 60) + (theHours * 60 * 60) + (theMinutes * 60)))
}
var timeString = theWeeks + " weeks " + theDays + " days " + theHours + " hours " + theMinutes + " minutes " + theSeconds + " seconds "
return timeString
}
function timer() {
document.timeStamp.showTime.value = daysToY2K();
window.status = "Time to Y2K: " + daysToY2K();
timeUpdate = setTimeout("timer()",1000);
}
// End Hiding -->
</SCRIPT>
<META content="none, default" name="Microsoft Border">
</HEAD>
<BODY bgColor=#000080 link=#ffff00><!-- '"Free Servers"' --><!-- Auto Banner Insertion Begin -->
<!-- Auto Banner Insertion Complete THANK YOU -->
<P align=left><B><FONT color=#00ff00 size=4>You are Visitor
number </FONT></B>
<TABLE border=4>
<TBODY>
<TR>
<TD>
<P align=left><APPLET code=Counter.class
codeBase=http://counter.bloke.com/" >http://counter.bloke.com/ height=20 width=75
ARCHIVE="http://counter.bloke.com/Counter.zip" >http://counter.bloke.com/Counter.zip"><PARAM NAME="URL" VALUE="http://www.h2g2.com/U91375" >http://www.h2g2.com/U91375"><PARAM NAME="reset" VALUE="10"><PARAM NAME="img" VALUE="/default-black-red.gif"><PARAM NAME="code" VALUE="Counter.class"><PARAM NAME="codeBase" VALUE="http://counter.bloke.com/" >http://counter.bloke.com/"><PARAM NAME="height" VALUE="20"><PARAM NAME="width" VALUE="75"><PARAM NAME="ARCHIVE" VALUE="http://counter.bloke.com/Counter.zip" >http://counter.bloke.com/Counter.zip"></APPLET></P></TD></TR></TBODY></TABLE>
<P align=left><B><FONT color=#00ff00 size=4>Since 11th September
1999 </FONT></B>
<P align=left
style="MARGIN-BOTTOM: 0px; MARGIN-TOP: 0px; WORD-SPACING: 0px"><FONT face=arial
size=1><FONT color=#00ff00>Powered by</FONT> <A href="http://counterbot.com/" >http://counterbot.com/"
target=_top>CounterBot.com</A></FONT> </P>
<P align=left style="MARGIN-BOTTOM: 0px; MARGIN-TOP: 0px; WORD-SPACING: 0px">
</P>
<P align=center
style="MARGIN-BOTTOM: 0px; MARGIN-TOP: 0px; WORD-SPACING: 0px"><IMG align=left
border=0 height=21 src="http://www.andyart.com/free/animations/myanim/redline2.gif" >http://www.andyart.com/free/animations/myanim/redline2.gif" width=892></P>
<P align=left
style="MARGIN-BOTTOM: 0px; MARGIN-TOP: 0px; WORD-SPACING: 0px"> </P>
<P align=left
style="word-spacing: 0px; margin-top: 0px; margin-bottom: 0px"> </P>
<P align=left
style="word-spacing: 0px; margin-top: 0px; margin-bottom: 0px"><FONT color=#ffffff face=arial
size=3><B><U>Quick markup menu</U></B></FONT></P>
<P align=left><B><FONT color=#00ff00 face=arial
size=3><a href="#The name is Tim">About
me</a></FONT></B></P>
<P align=left><B><FONT color=#00ff00 face=arial
size=3><a href="#Chat Room">El
Torrinos Live Chat Room</a> </FONT><FONT color=#ffffff face=arial
size=3>Next scheduled chat 6.00pm UTC Sunday. Join us if you can.</FONT></B></P>
<P align=left><B><FONT color=#00ff00 face=arial
size=3><a href="#Other Researchers">Other
Researchers</a></FONT></B></P>
<P align=left><B><FONT color=#00ff00 face=arial
size=3><a href="#How you guys can contact me">How
to contact me</a></FONT></B></P>
<P align=left><FONT color=#ff0000
face="Arial Rounded MT Bold" size=3><B>Welcome everyone. Come in, sit down, have
a rest. This is my lair. You can ask me as many questions as you like. I am not
saying for one minute that you will get a reasonable response because contrary
to common beliefs I don't actually know everything. Hey but I am working my way
there.</B></FONT></P>
<P align=left><B><FONT color=#ff0000
face="Arial Rounded MT Bold" size=3><A name="The name is Tim">The name is
Ti</A>m. I live in the western tip of the UK somewhere in a rural jungle called
(hmmm... in deep thought) oh yes!!!! Aberdare. That's in Wales. Did I mention
Wales are just gonna win the Rugby World Cup
99.</FONT></B> <B><FONT color=#ff0000
face="Arial Rounded MT Bold"
size=3> </FONT></B></P>
<P align=center><B><FONT color=#ff0000
face="Arial Rounded MT Bold" size=3> <IMG border=0 height=127
src="http://www.itv-rugby.co.uk/images/rwc99.gif" >http://www.itv-rugby.co.uk/images/rwc99.gif" width=60></FONT></B></P>
<P align=center><B><FONT color=#ff0000
face="Arial Rounded MT Bold" size=3><A href="http://www.surf.to/rwc99" >http://www.surf.to/rwc99">Visit My
Uncle Grahams site. He is hosting a fantasy Rugby World Cup</A></FONT></B></P>
<P align=center><B><FONT color=#ff0000
face="Arial Rounded MT Bold" size=3><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75><IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75></FONT></B></P>
<P align=center><B><FONT color=#ff0000
face="Arial Rounded MT Bold"
size=3>!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Faithful To
WALES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!</FONT></B></P>
<P align=center> </P>
<P align=center><IMG align=left
border=0 height=21 src="http://www.andyart.com/free/animations/myanim/redline2.gif" >http://www.andyart.com/free/animations/myanim/redline2.gif" width=888></P>
<P align=center> </P>
<P align=center><B><FONT color=#ff0000
face="Arial Rounded MT Bold" size=3>The millennium --- What a fantastic time it
will be. On loading this page the time to y2k was:</FONT></B></P>
<P align=left>
<H1 align=left>
<SCRIPT language=JavaScript>
<!-- Hide JavaScript from Java-Impaired Browsers
document.write("There are " + displayDays + " days until Y2K.<BR/>")
document.write("<font color='red'>There are " + displayHours + " hours until Y2K.</font><BR/>")
document.write("<font color='green'>There are " + displayMinutes + " minutes until Y2K.</font><BR/>")
document.write("<font color='purple'>There are " + displaySeconds + " seconds until Y2K.</font>")
// End Hiding -->
</SCRIPT>
</H1>
<P align=left><IMG align=left
border=0 height=21 src="http://www.andyart.com/free/animations/myanim/redline2.gif" >http://www.andyart.com/free/animations/myanim/redline2.gif" width=888>
<P align=left>
<P align=left>
<P align=left><FONT color=#ffff00
face="Arial Rounded MT Bold" size=3><B>Time to Y2K when you loaded this page
was: </B></FONT>
<P align=left><FONT color=#ffff00
face="Arial Rounded MT Bold" size=3><B>
<SCRIPT language=JavaScript>
<!-- Hide JavaScript from Java-Impaired Browsers
document.write(daysToY2K())
// End Hiding -->
</SCRIPT>
</B></FONT>
<P align=center>
<CENTER></CENTER><IMG align=left
border=0 height=21 src="http://www.andyart.com/free/animations/myanim/redline2.gif" >http://www.andyart.com/free/animations/myanim/redline2.gif" width=888>
<CENTER>
<P align=center> </P>
<P align=center><FONT color=#ffffff size=3><B><FONT
face="Arial Rounded MT Bold">This picture sums up the millennium : </FONT><IMG
border=0 src="http://www.nccnet.co.uk/~shazz/h2g2/Page_16/IMAG0024.GIF" >http://www.nccnet.co.uk/~shazz/h2g2/Page_16/IMAG0024.GIF" width="21" height="47"></B></FONT></P></CENTER>
<P align=left><B><FONT color=#ff0000
face="Arial Rounded MT Bold" size=3>You may think our language is dull (Welsh
that is)<IMG border=0 height=50 src="http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" >http://www.animfactory.com/animgifs/flags/world/nations_oz/wales_clr.gif" width=75> but hey
don't worry so do I. You may also call me brains. I know MADMUNK a in't as
brainy as me, or is it the other way round????? Anyway never mind. The fact is
that I had a B in Maths G.C.S.E a year early. And Saber if your reading
this that was with NO REVISING!!!!!!!! NO REVISING!!!!!!!! NO
REVISING!!!!!!!! NO REVISING!!!!!!!! NO REVISING!!!!!!!! unlike you. I am now
going on to do HNC Foundation Computing. Pascal and Visual Basic. (Anyone
want a program???) Doing that course with <A
href="http://www.h2g2.com/U27618" >http://www.h2g2.com/U27618">MADMUNK </A>and <A
href="http://www.h2g2.com/U46027" >http://www.h2g2.com/U46027">Saber</A> (the swot). Did I mention Wales are
just gonna win the Rugby World Cup 99.</FONT></B> </P>
<P align=left
style="line-height: 100%; word-spacing: 0px; margin-top: 0px; margin-bottom: 0px"><FONT color=#ff0000
face="Arial Rounded MT Bold" size=3><B>Relax and let me tell you about myself
and my tales from afar (I think it was the moon). If you care to listen, you may
learn something of interest, for that is my nature. I teach wonderful things.
You may then glitter above the rest. Remember not all that glitters is gold.
</B></FONT><B><FONT color=#ff0000 face="Arial Rounded MT Bold" size=3>Did I
mention Wales are just gonna win the Rugby World Cup
99.</FONT></B> </P>
<P align=left
style="LINE-HEIGHT: 100%; MARGIN-BOTTOM: 0px; MARGIN-TOP: 0px; WORD-SPACING: 0px"> </P>
<P align=left
style="LINE-HEIGHT: 100%; MARGIN-BOTTOM: 0px; MARGIN-TOP: 0px; WORD-SPACING: 0px"><IMG align=left
border=0 height=21 src="http://www.andyart.com/free/animations/myanim/redline2.gif" >http://www.andyart.com/free/animations/myanim/redline2.gif" width=888></P>
<P align=left
style="text-indent: 0px; word-spacing: 0px; margin: 0px"> </P>
<P align=left
style="text-indent: 0px; word-spacing: 0px; margin: 0px"> </P>
<P align=left
style="text-indent: 0px; word-spacing: 0px; margin: 0px"><B><U><A name="Other Researchers"><FONT
color=#ffffff face="Arial Rounded MT Bold" size=3>Other
Researchers</FONT></A></U></B></P>
<P align=left
style="line-height: 100%"><B><A
href="http://www.h2g2.com/U27618" >http://www.h2g2.com/U27618"><U><FONT color=#00ff00
face="Arial Rounded MT Bold" size=3>MADMUNK</FONT></U></A></B></P>
<P align=left
style="line-height: 100%"><B><A
href="http://www.h2g2.com/U60427" >http://www.h2g2.com/U60427"><FONT color=#00ff00
face="Arial Rounded MT Bold" size=3>Saber</FONT></A></B></P>
<P align=left
style="line-height: 100%"><B><A
href="http://www.h2g2.com/U53422" >http://www.h2g2.com/U53422"><FONT color=#00ff00
face="Arial Rounded MT Bold" size=3>Bazooka</FONT></A></B></P>
<P align=left
style="line-height: 100%"><A href="http://www.h2g2.com/U50758" >http://www.h2g2.com/U50758"><FONT
color=#00ff00 face="Arial Rounded MT Bold" size=3>Et Cetera is now
Lisa</FONT></A></P>
<P align=left
style="line-height: 100%"><a href="http://www.h2g2.com/U45177" >http://www.h2g2.com/U45177"><font face="Arial Rounded MT Bold" size="3" color="#00FF00">Pastey
(He seemed popular so I added him. I aint had chance to speak to him though)</font></a></P>
<P align=left
style="line-height: 100%"><b><a href="http://www.h2g2.com/U34006" >http://www.h2g2.com/U34006"><font size="3" face="Arial Rounded MT Bold" color="#00FF00">vegiman:-)
(This guy was added because of the oddness of his nickname. hmmmm....</font></a></b></P>
<P align=left
style="line-height: 100%"><b><a href="http://www.h2g2.com/U48304" >http://www.h2g2.com/U48304"><font size="3" face="Arial Rounded MT Bold" color="#00FF00">Shazz
(Cool person. Talked on ICQ)</font></a></b></P>
<P align=left
style="line-height: 100%"><b><font size="3" face="Arial Rounded MT Bold" color="#FFFFFF">If
ya want your link added please </font><a href="#How you guys can contact me"><font size="3" face="Arial Rounded MT Bold" color="#FFFFFF">Conatct
me in one of the ways below</font></a></b></P>
<P align=left
style="line-height: 100%"> </P>
<P align=left
style="line-height: 100%"><IMG align=left
border=0 height=21 src="http://www.andyart.com/free/animations/myanim/redline2.gif" >http://www.andyart.com/free/animations/myanim/redline2.gif" width=888></P>
<P align=left
style="line-height: 100%"> </P>
<P align=left
style="line-height: 100%"><FONT color=#ffffff
face="Arial Rounded MT Bold" size=3><A name="How you guys can contact me">How
you guys can contact me</A></FONT></P>
<P align=left
style="line-height: 100%"><FONT color=#00ff00
face="Arial Rounded MT Bold" size=3>Mail : <A
href="mailto:[email protected]">[email protected]</A> </FONT></P>
<P align=left
style="line-height: 100%"><FONT color=#00ff00
face="Arial Rounded MT Bold" size=3>ICQ : </FONT><FONT color=#ffff00
face="Arial Rounded MT Bold" size=3>43437049</FONT></P>
<P align=left
style="line-height: 100%"><FONT color=#00ff00
face="Arial Rounded MT Bold" size=3>Yahoo Pager ID'S : virtualba</FONT></P>
<P align=left
style="line-height: 100%"><B><FONT color=#00ff00
face="Arial Rounded MT Bold"
size=3> </FONT></B></P>
<P align=center><B><FONT color=#ffff00 size=3><A
href="mailto:[email protected]">Why don't ya e-mail me your comments and you
will be added to my list</A></FONT></B> </P>
<P align=center><IMG align=left
border=0 height=21 src="http://www.andyart.com/free/animations/myanim/redline2.gif" >http://www.andyart.com/free/animations/myanim/redline2.gif" width=888> </P>
<P align=center> </P>
<P align=center> </P>
<P align=center><B><FONT color=#ffffff face=arial
size=4>Next scheduled chat 6.00pm UTC Sunday</FONT></B> </P>
<P align=center><B><FONT color=#ffffff face=arial
size=4>Join us if you can</FONT></B> </P>
<P align=center><A name="Chat Room"><APPLET code=ConferenceRoom.class
codeBase=http://chat.planetz.net:8000/java/" >http://chat.planetz.net:8000/java/ height=350 name=QuickChat width=500
archive="http://chat.planetz.net:8000/java/cr.zip" >http://chat.planetz.net:8000/java/cr.zip"><PARAM NAME="cabbase" VALUE="http://chat.planetz.net:8000/java/cr.cab" >http://chat.planetz.net:8000/java/cr.cab"><PARAM NAME="channel" VALUE="ELTorrino Chat"><PARAM NAME="simple" VALUE="true"><PARAM NAME="bg" VALUE="000000"><PARAM NAME="fg" VALUE="FFFFFF"><PARAM NAME="font" VALUE="helvetica"><PARAM NAME="size" VALUE="12"><PARAM NAME="tickershadow" VALUE="false"><PARAM NAME="ticker" VALUE="Welcome to QuickChat by Planet Z Networks - http://www.quickchat.org" >http://www.quickchat.org "><PARAM NAME="ticker2" VALUE="Add a chat like this on your page by clicking on the QuickChat Now button below!"><PARAM NAME="colorpanel" VALUE="true"><PARAM NAME="roomsWidth" VALUE="0"><PARAM NAME="nick" VALUE=" "><PARAM NAME="user" VALUE="quickchat"><PARAM NAME="port" VALUE="7000"><PARAM NAME="info" VALUE="Planet Z QuickChat"><PARAM NAME="showticker" VALUE="true"><PARAM NAME="code" VALUE="ConferenceRoom.class"><PARAM NAME="codeBase" VALUE="http://chat.planetz.net:8000/java/" >http://chat.planetz.net:8000/java/"><PARAM NAME="height" VALUE="350"><PARAM NAME="name" VALUE="QuickChat"><PARAM NAME="width" VALUE="500"><PARAM NAME="archive" VALUE="http://chat.planetz.net:8000/java/cr.zip" >http://chat.planetz.net:8000/java/cr.zip"></APPLET>
</A><BR/><A href="http://www.quickchat.org/" >http://www.quickchat.org/"><IMG alt="Get QuickChat Now!"
border=0 height=31 src="http://images.quickchat.org/button.gif" >http://images.quickchat.org/button.gif" width=88></A> </P>
<P align=left> </P>
<P align=left> </P>
<P align=left><IMG align=left
border=0 height=21 src="http://www.andyart.com/free/animations/myanim/redline2.gif" >http://www.andyart.com/free/animations/myanim/redline2.gif" width=888> </P>
<P align=left> </P>
<SCRIPT src="h2g2_files/is"></SCRIPT>
<NOSCRIPT><IMG border=0 height=1 src="h2g2_files/clear.gif" width=1></NOSCRIPT>
</BODY></HTML>
Latest Messages
Messages left for this Researcher | Posted |
---|---|
El TotalPratto | Sep 18, 1999 |
hahahahahahaha | Sep 17, 1999 |
Hello & welcome! | Sep 12, 1999 |
hello there! | Sep 12, 1999 |
General Greetings, Traveller | Sep 11, 1999 |
Conversations
Conversation Title | Latest Post | Latest Reply |
---|---|---|
Hey Shazz | Sep 13, 1999 | Aug 19, 2004 |
Queuing Star Wars | Sep 12, 1999 | Jun 26, 2000 |
Who's been here 2 - this is the party!!! | Sep 12, 1999 | Jun 6, 2000 |
El TotalPratto | Sep 18, 1999 | Sep 18, 1999 |
hahahahahahaha | Sep 17, 1999 | No Replies |
El Torrino
Researcher U91375
Entries
Most Recent Edited Entries
- This user has not written any Edited Entries.
Entries
- This user has not written any Edited Entries.
Disclaimer
h2g2 is created by h2g2's users, who are members of the public. The views expressed are theirs and unless specifically stated are not those of Not Panicking Ltd. If you consider any Entry to be in breach of the site's House Rules, please register a complaint. For any other comments, please visit the Feedback page.
Write an Entry
"The Hitchhiker's Guide to the Galaxy is a wholly remarkable book. It has been compiled and recompiled many times and under many different editorships. It contains contributions from countless numbers of travellers and researchers."