<!-- 
// Copyright Info
// (c) 2004 Gerhard Schuhmacher
function copyright() {
 var a,b,c,d,thisyear,ver,yr
 newdate = new Date();
 thisyear= newdate.getYear();
 ver = navigator.appName;
 a='K'
 b=' '
 c='Sch'
 d='her'
 a+='are'
 c+='uh'
 a+='n'
 c+='mac'
 document.write('<font face="arial" size="1" color="#000000">&copy; 2003-');
 if (ver == "Microsoft Internet Explorer") {
 document.write(thisyear);
 } else {
 yr = thisyear - Math.round ( thisyear / 100 ) * 100;
 if ( yr < 10 ) {
	document.write('200'+yr);
	} else {
	document.write('20'+yr);
	}
 }
document.write(' &nbsp;'+a+b+c+d+' &nbsp;</font>')
}
copyright()
// -->
