function myaddress() {
 document.write("<address>Mark Forkheim<br />");
 document.write('<a href="mailto:mark@forkheim.ca" onmouseover="status=\'English only please\'; return true;">mark@forkheim.ca</a>');
 document.write("</address>");
}
function update() {
 document.write("This area was last updated "+document.lastModified);
}
function copyw(date) {
 document.write("This document is &copy; Copyright by Mark Forkheim "+date+"<br />");
}
function quote() {
 var quotes= new Array(3);
 quotes[0]="<q>Try not! Do, or do not, there is no try.</q> <br /> Yoda - <cite>The Empire Stikes Back</cite>";
 quotes[1]="<q>You are only lost when you have a place to go and a time to be there.</q> <br />Tom Brown Jr. - <cite>Tom Brown's Field Guide to Nature and Survival for Children</cite>";
 quotes[2]="<q>Plurality should not be posited without necessity.</q> <br />William of Ockham - 1285-1349";
 var rand_int= Math.floor(Math.random()*3);
 document.write(quotes[rand_int]);
}
function pagesize() {
 var pageheight= screen.availHeight-225;
 var pagediv= document.getElementById("page");
 pagediv.style.height= pageheight;
 window.name="mainw";
}
function defstat() {
 defaultStatus="This site best viewed with Windows running IE 5 or higher at 800x600";
}
