function zoomPhoto(picture, width, height) {
	var fenster;
	var width = width + 140;
	var height = height + 160;
	var ns4up = (document.layers) ? 1 : 0;
	var ie4up = (document.all) ? 1 : 0;
	var xsize = screen.width;
	var ysize = screen.height;
	var xpos = (xsize - width) / 2;
	var ypos = (ysize - height) / 2;

	fenster = window.open("zoom.html?picture=" + picture, "", "scrollbars=no, status=no, toolbar=no, location=no, directories=no, resizable=no, menubar=no, width=" + width + ", height=" + height + ", screenX=" + xpos + ", screenY=" + ypos + ",top=" + ypos + ",left=" + xpos)
}

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 linkToUnCryptMailto(s) {
    location.href = UnCryptMailto(s);
}

