<!--

  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, h2;
		var p;

		if (window.innerHeight) {
			h = window.innerHeight - 73;
			h2 = window.innerHeight - 73;
			p = window.innerHeight - 25;
		}	else if (document.documentElement && document.documentElement.clientHeight)	{
			h = document.documentElement.clientHeight - 73;
			h2 = document.documentElement.clientHeight - 90;
			p = document.documentElement.clientHeight - 25;
		}	else if (document.body)	{
			h = document.body.clientHeight - 73;
			h2 = document.body.clientHeight - 90;
			p = document.body.clientHeight - 25;
		}

		document.getElementById("F").style.top = p+"px";
		document.getElementById("G").style.top = (p-155)+"px";
		document.getElementById("I").style.height = (h-25)+"px";
	}
	
//-->
