// Copyright statement displays at the bottom of every page
function copydate ()
 {
    today=new Date();
    yearonly=today.getFullYear();
	firstyear = "&copy;&nbsp;1999 - ";
    document.write(firstyear + yearonly + ' Adventures Online. All rights reserved.');
 }
