/* Vor dem Ändern eine Sicherheitskopie anlegen! */
/* Diese Zeilen sind Kommentare. Sie werden zur Laufzeit nicht ausgeführt. */
/* Nicht gewünschte Effekte können in die Kommentar-Anfangs- und Kommentar-End-Symbole */
/* eingeschlossen werden. Sie werden dann nicht ausgeführt. */


jetzt = new Date()
var quart = jetzt.getMonth();

	if (quart < 2){
	document.write('<body bgcolor="orange" nosaveonload="setVariables();checkLocation()">')
	}

	if (quart > 1 && quart < 5){
	document.write('<body bgcolor="lightblue" nosave onload="setVariables();checkLocation()">')
	}

	if (quart > 4 && quart < 8){
	document.write('<body bgcolor="lightgreen" nosave onload="setVariables();checkLocation()">')
	}

	if (quart > 7 && quart < 11){
	document.write('<body bgcolor="lightgrey" nosave onload="setVariables();checkLocation()">')
	}

	if (quart == 11){
	document.write('<body bgcolor="orange" nosave onload="setVariables();checkLocation()">')
	}

function setVariables() {

	if (navigator.appName == "Netscape") {
	v=".top=";
	dS="document.";
	sD="";
	y="window.pageYOffset";
	}
	else {
	v=".pixelTop=";
	dS="";
	sD=".style";
	y="document.body.scrollTop";
	   }
}

function checkLocation() {

	object="object1";
	yy=eval(y);
	eval(dS+object+sD+v+yy);
	setTimeout("checkLocation()",10);
}

//-->
