<!--

	function ShowWindow ( site, w, h, scrollit ) {

		x = screen.availWidth/2-w/2;
		y = screen.availHeight/2-h/2;

		window.open( site ,'','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+', hotkeys=no,location=no,menubar=no,resizable=no,scrollbars='+scrollit+',status=no,toolbar=no');

	}



	function ImgPreload() {
		document.Vorladen = new Array();

		if(document.images) {
			for(var i = 0; i < ImgPreload.arguments.length; i++) {
				document.Vorladen[i] = new Image();
				document.Vorladen[i].src = ImgPreload.arguments[i];
			}
		}

	}

	function LinkHover (id) {

			document.getElementById(id).style.textDecoration = "none";

			document.getElementById(id).style.color = "#996633";

	}

	

	function LinkOut (id) {

		document.getElementById(id).style.textDecoration = "underline";

		document.getElementById(id).style.color = "#996633";

	}

	function ImgHover (id) {

		document.getElementById(id).style.textDecoration = "none";

	}

	function ImgOut (id) {

		document.getElementById(id).style.textDecoration = "none";

	}

	// JS function for uncrypting spam-protected emails:

	function linkTo_UnCryptMailto( zz )	{	//

		location.href= "mailto:" + Base64.decode( zz );

	}

//-->


