    <!--//
	
	var iszoomed=false;
	var zoomlock=false;
	var is = new Is(); 
	window.onresize=zoomonResize;
	
	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\;\">";
			zoomform = zoomform + "</form>";
			if (is.zoomable) {document.writeln(zoomform);}
	}
	
	function toggleZoom()  {
		if (iszoomed) {Zoom('no');} else {Zoom('yes');}
	}
	
	function changeButton()  {
		var buttoncaption = "Zoom Page";
		if (iszoomed) buttoncaption="Resize Page";
		if (document.getElementById) document.getElementById('zoombutton').value=buttoncaption;
		if (document.getElementById) document.getElementById('zoombutton').value=buttoncaption;
	}
	
	function Zoom(yesorno) 
		{
		var basewidth, baseheight, w, h, z, minz, maxz, objTmp, ObjWidth, ObjHeight
		basewidth 	= 800;
		baseheight	= 600;
		minz 		= 0.5;
		maxz		= 1.5;
		
		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;
		if (z<=minz) z=minz; if (z>=maxz) z=maxz;
		
		if (zoomlock || !is.zoomable) {return false;} else {lockzoom(500);}
      	if (!yesorno) {if (w>1100) {yesorno="yes"} else {yesorno="no"}}
		if (yesorno=="yes")
			{
				if (is.zoomable) {document.body.style.zoom = z; iszoomed=true;} // do zoom
			} else 	{
				if (is.zoomable) {document.body.style.zoom = 1; iszoomed=false;} // dont zoom
			}
		changeButton();
    }//Function Zoom Ende

	function zoomonResize(){
		if (iszoomed && !zoomlock) {lockzoom('500'); Zoom('yes');}
	}
    //-->    <!--//
	
	var iszoomed=false;
	var zoomlock=false;
	var is = new Is(); 
	window.onresize=zoomonResize;
	
	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\;\">";
			zoomform = zoomform + "</form>";
			if (is.zoomable) {document.writeln(zoomform);}
	}
	
	function toggleZoom()  {
		if (iszoomed) {Zoom('no');} else {Zoom('yes');}
	}
	
	function changeButton()  {
		var buttoncaption = "Zoom Page";
		if (iszoomed) buttoncaption="Resize Page";
		if (document.getElementById) document.getElementById('zoombutton').value=buttoncaption;
		if (document.getElementById) document.getElementById('zoombutton').value=buttoncaption;
	}
	
	function Zoom(yesorno) 
		{
		var basewidth, baseheight, w, h, z, minz, maxz, objTmp, ObjWidth, ObjHeight
		basewidth 	= 800;
		baseheight	= 600;
		minz 		= 0.5;
		maxz		= 1.5;
		
		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;
		if (z<=minz) z=minz; if (z>=maxz) z=maxz;
		
		if (zoomlock || !is.zoomable) {return false;} else {lockzoom(500);}
      	if (!yesorno) {if (w>1100) {yesorno="yes"} else {yesorno="no"}}
		if (yesorno=="yes")
			{
				if (is.zoomable) {document.body.style.zoom = z; iszoomed=true;} // do zoom
			} else 	{
				if (is.zoomable) {document.body.style.zoom = 1; iszoomed=false;} // dont zoom
			}
		changeButton();
    }//Function Zoom Ende

	function zoomonResize(){
		if (iszoomed && !zoomlock) {lockzoom('500'); Zoom('yes');}
	}
    //-->