var zufall = Math.round((Math.random() * 1000000));
function zoom(datei,breit,hoch)
{
	big = window.open(datei, breit+"zoomed"+zufall, "width="+breit+",height="+hoch+",resizable=no,menubar=no,status=no,locationbar=no,dependent=yes,scrollbars=no");
	big.focus();
}

function zoom_scroll(datei,breit,hoch)
{
	big = window.open(datei, breit+"zoomed"+zufall, "width="+breit+",height="+hoch+",resizable=no,menubar=no,status=no,locationbar=no,dependent=yes,scrollbars=yes");
	big.focus();
}

function zoom_jump(datei,breit,hoch)
{
	big = window.open(datei, breit+"zoomed"+zufall, "width="+breit+",height="+hoch+",resizable=no,menubar=no,status=no,locationbar=no,dependent=yes,scrollbars=yes");
	big.focus();
}

function uncryptmail(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 link_cryptmail(s)	{	//
	location.href=uncryptmail(s);
}
