<!--

	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 = "underline";
			document.getElementById(id).style.color = "#666666";
	}
	
	function LinkOut (id) {
		document.getElementById(id).style.textDecoration = "none";
		document.getElementById(id).style.color = "#3399CC";
	}
	
	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 );
	}
//-->

