<!--

//////////////////////////////////////////
// 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 = "Informationen und Bilder sind urheberrechtlich geschützt  <br />&copy; 2001 - " + theyear + " durch Bali.com Ltd.";
	return cprmsg;
}
