//////////////////////////////////////////
// This script is copyright (c) 2003 by //
// Gert Graf (graf@grafnet.com          //
//////////////////////////////////////////

var copyrightmessage = makeCopyrightMessage();

function makeCopyrightMessage() {
	var currentdate = new Date();
	var theyear = currentdate.getYear();
	if (theyear < 2000) {
		theyear += 1900;
	}
	var cprmsg = "The <b><span style=\"color: #FF0000;\">BALI</span>&nbsp;<span style=\"color: #215E21;\">travel</span>&nbsp;<span style=\"color: #FF0000;\">FORUM</span></b> is Copyright &copy; 1997 - " + theyear + " by Bali.com Ltd.";
	return cprmsg;
}

