// JavaScript Document
<!--
if (top.frames.length == 0) top.location.href="index.php?"+self.location.pathname.substring(location.pathname.lastIndexOf('\/')+1);

if (document.cookie) {
    var tcstart = document.cookie.indexOf("text=") + 5;
    var tcende = tcstart + 2;
    var s = document.cookie.substring(tcstart,tcende);
	}
else {
	var s = 11;
	};

function textsize(c) {
if (c == "+") {if (s == 11) {s = 13}
			   else {s = 15;}}
else {if (s == 15) {s = 13}
			   else {s = 11;}}
textset();
}

function textset() {
var l = "";
var ablauf = new Date();
var timepass = ablauf.getTime() + (3 * 24 * 60 * 60 * 1000);
ablauf.setTime(timepass);
if (s == 11) 	 {l = "18px"}
else {
	if (s == 13) {l = "22px"}
			else {l = "24px"}
	 }
document.getElementById('context').style.fontSize=s;
document.getElementById('context').style.lineHeight=l;
document.cookie = "text=" + s + "; expires=" + ablauf.toGMTString();
}

-->


