	<!--
	
	  function UnCryptMailto(s) {
	    var n=0;
 	   var r="";
 	   for(var i=0; i < s.length; i++) {
  	    n=s.charCodeAt(i);
    	  if (n>=8364) {n = 128;}
      	r += String.fromCharCode(n-(1));
    	}
  	  return r;
	  }
	
	  function linkTo_UnCryptMailto(s) {
  	  location.href=UnCryptMailto(s);
	  }
		
		function resizeL() {
	
			var h;

			if (window.innerHeight) {
				h = window.innerHeight - 85;
			}	else if (document.documentElement && document.documentElement.clientHeight)	{
				h = document.documentElement.clientHeight - 85;
			}	else if (document.body)	{
				h = document.body.clientHeight - 85;
			}

			document.getElementById("L").style.height = h+"px";
		}
	
	//->

