/* <![CDATA[ */
/* Javascript Funktionen */
	function openWin(fileName,windowName,width,height) {
		window.open(fileName,windowName,'width='+width+',height='+height+',directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=no');
	}
	
	function decode_mail(email) {
		var x = 0;
		var str = "";
		for(i=0; i < email.length; i++) {
			x = email.charCodeAt(i);
			if(x >= 8364) {
				x = 128;
			}
			str += String.fromCharCode(x-(2));
		}
		return str;
	}
	
	function encode_mail(email,subject)	{
		location.href = 'mailto:'+decode_mail(email)+'?subject='+subject;
	}
	
	function showhide(el) {
		if(document.getElementById(el).style.display == 'none') {
			document.getElementById(el).style.display = 'block';
		}else {
			document.getElementById(el).style.display = 'none';
		}
	}
/* Ende Kommentar */
/* ]]> */