<!--

	function BilderVorladen() {
		document.Vorladen = new Array();
		
		if(document.images) {
			for(var i = 0; i < BilderVorladen.arguments.length; i++) {
				document.Vorladen[i] = new Image();
				document.Vorladen[i].src = BilderVorladen.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";
	}
	
	function ButtonHoverEfx (id) {
		document.getElementById(id).style.backgroundColor = "#FFFFFF";
		document.getElementById(id).style.cursor = "pointer";
	}
	function ButtonOutEfx ( id ) {
		document.getElementById(id).style.backgroundColor = "#DDDDDD";
	}
	
	function mergemail(par1,par2,par3,par4) {
		document.location.href="mailto:" + par1 + "@" + par2 + "." + par3 + "?subject=" + par4;
	}
	
	// JS function for uncrypting spam-protected emails:
	function linkTo_UnCryptMailto( zz )	{	//
		location.href= "mailto:" + Base64.decode( zz );
	}
//-->
