function Link(x)
{
  window.open(x, "Link", "toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,dependent,width=700,height=450")
}

function WinOpen(datei,width_px,height_px)
{
  newwin=window.open(datei, "", "toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,dependent,width="+width_px+",height="+height_px)
  if(width_px == screen.width && height_px == screen.height)
  {
    newwin.moveTo(0,0)
    newwin.resizeTo(screen.width,screen.height)
  }
}

function UnCryptMailto(s)
{
	var n=0;
	var r="";
	var shift=5;
	for(var i=0;i<s.length;i++)
	{
		n=s.charCodeAt(i);
		if (n>=8364)
		{
			n = 128;
		}
		r += String.fromCharCode(n-(shift));
	}
	return r;
}

function linkTo_UnCryptMailto(s)
{
	location.href=UnCryptMailto(s);
}
