    <!--//
	
	var iszoomed=false;
	var zoomlock=false;
	var is = new Is(); 
	
	
	function lockzoom(ms)	{
		if (zoomlock==false) {
			zoomlock=true;
			window.setTimeout('zoomlock=false',ms);
		}
	}
	
	
	function Is() { //checks Browsertype
		agent = navigator.userAgent.toLowerCase();  //mson: ACHTUNG: Opera wird ebenfalls als IE erkannt da im userAgent "IE" und "Opera" drinsteht!
		this.major = parseInt(navigator.appVersion);
		this.minor = parseFloat(navigator.appVersion);
		this.ns = ((agent.indexOf('mozilla') != -1) && ((agent.indexOf('spoofer') == -1) && (agent.indexOf('compatible') == -1)));
		this.ns4 = (this.ns && (this.major == 4));
		this.ns6 = (this.ns && (this.major >= 5));
		this.op = (agent.indexOf("opera") != -1)
		this.ie = (agent.indexOf("msie") != -1);
		this.ie3 = (this.ie && (this.major < 4));
		this.ie4 = (this.ie && (this.major == 4) && (agent.indexOf("msie 5.0") == -1));
		this.ie5 = (this.ie && (this.major == 4) && (agent.indexOf("msie 5.0") != -1));
		this.ie55 = (this.ie && (this.major == 4) && (agent.indexOf("msie 5.5") != -1));
		this.ie6 = (this.ie && (agent.indexOf("msie 6.0")!=-1) && !this.op);
		this.zoomable = this.ie6;
	}

	function zoombutton() {
			var zoomform="";
			zoomform = zoomform + "<FORM name=\"zoomform\">";
			zoomform = zoomform + "<input type=\"button\" id=\"zoombutton\" name=\"zoombutton\" value=\"\" ";
			zoomform = zoomform + "onClick=\"javascript:toggleZoom()\" ";
			zoomform = zoomform + "style=\"color:#880000\;margin:5px\;font-family:Verdana\;font-size:10px\;background-color:#D5DAE0\;\">";
			zoomform = zoomform + "</form>";
			if (is.zoomable) {document.writeln(zoomform);}
	}
	
	function toggleZoom()  {
		if (iszoomed) {Zoom('no');} else {Zoom('yes');}
	}
	
	function changeButton()  {
		var buttoncaption = "Zoom Page";
		var buttonname = "zoombutton";
		if (iszoomed) buttoncaption="Resize Page";
		if (document.getElementById) {document.getElementById(buttonname).value=buttoncaption;}
	}
	
	function Zoom(yesorno) 
		{
		var basewidth, baseheight, autozoomwidth, w, h, z, minz, maxz, objTmp, ObjWidth, ObjHeight
		basewidth 		= 800;
		baseheight		= 600;
		minz 			= 0.5;
		maxz			= 2;
		autozoomwidth 	= 1200;
		
		if (zoomlock || !is.zoomable) {return false;}
		
		lockzoom(500);
		objTmp = "document.documentElement.offsetWidth"; 	if (eval(objTmp)) {ObjWidth = objTmp; ObjHeight="document.documentElement.offsetHeight";}
		objTmp = "window.innerWidth"; 						if (eval(objTmp)) {ObjWidth = objTmp; ObjHeight="window.innerHeight";}
		objTmp = "document.body.clientWidth"; 				if (eval(objTmp)) {ObjWidth = objTmp; ObjHeight="document.body.clientWidth * 0.75";}
		w=eval(ObjWidth); h=eval(ObjHeight);
		if (w >= h) z=h/baseheight; else z=w/basewidth; z=Math.round(z*100)/100;
		if (z<=minz) z=minz; if (z>=maxz) z=maxz;
      	if (!yesorno) {
      		if (w>autozoomwidth) {yesorno="yes"} else {yesorno="no"};
      		if (GetCookie('dozoom')=="yes") {yesorno="yes"} else {yesorno="no"};
      		}
		if (yesorno=="yes")
			{
				if (is.zoomable) {document.body.style.zoom = z; iszoomed=true; SetCookie("dozoom","yes")} // do zoom
			} else 	{
				if (is.zoomable) {document.body.style.zoom = 1; iszoomed=false; SetCookie("dozoom","no")} // dont zoom
			}
		changeButton();
    }//Function Zoom Ende

	
	

	// Cookies Functions

	function getCookieVal(offset) {
	  var endstr = document.cookie.indexOf (";", offset);
	  if (endstr == -1)
	    endstr = document.cookie.length;
	  return unescape(document.cookie.substring(offset, endstr));
	}
	
	function GetCookie(name) {
	  var arg = name + "=";
	  var alen = arg.length;
	  var clen = document.cookie.length;
	  var i = 0;
	  while (i < clen) {
	    var j = i + alen;
	    if (document.cookie.substring(i, j) == arg)
	      return getCookieVal (j);
	    i = document.cookie.indexOf(" ", i) + 1;
	    if (i == 0) break; 
	  } return null;
	}
		
	function SetCookie(name, value) {
	  var argv = SetCookie.arguments;
	  var argc = SetCookie.arguments.length;
	  var expires = (argc > 2) ? argv[2] : null;
	  var path = (argc > 3) ? argv[3] : null;
	  var domain = (argc > 4) ? argv[4] : null;
	  var secure = (argc > 5) ? argv[5] : false;
	  document.cookie = name + "=" + escape (value) +
	    ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
	    ((path == null) ? "" : ("; path=" + path)) +
	    ((domain == null) ? "" : ("; domain=" + domain)) +
	    ((secure == true) ? "; secure" : "");
	}	
    //-->	
