function setCookie(cookievar) {
	document.cookie = cookievar;
}

function Farbe (R, G, B) {
  this.R = R;
  this.G = G;
  this.B = B;
  this.hex = "#";
}

function HintergrundWechseln (r,g,b) {
  var Hintergrund 	= new Farbe(r, g, b);
  var bgcolor 		= Hintergrund.hex + Hintergrund.R + Hintergrund.G + Hintergrund.B
  setCookie(bgcolor);
  document.bgColor = bgcolor;
}

if(document.cookie) {
	document.bgColor = document.cookie;
} else {
	document.bgColor = "#666666";
}


function FensterOeffnen (Adresse) {
  MeinFenster = window.open(Adresse, "", "width=600,height=400,screenX=0,screenY=0");
  MeinFenster.focus();
}
