function popup(page, breite, hoehe, scrollbar)
{
	if(scrollbar == 1)
	{
		var popup = window.open(page, "opengal", "width="+breite+",height="+hoehe+",scrollbars=yes");
	}
	else
	{
		var popup = window.open(page, "opengal", "width="+breite+",height="+hoehe+",scrollbars=no");
	}
	popup.focus();
}

function vpopup(page, breite, hoehe, scrollbar)
{
	if(scrollbar == 1)
	{
		var popup = window.open(page, "openvideo", "width="+breite+",height="+hoehe+",scrollbars=yes");
	}
	else
	{
		var popup = window.open(page, "openvideo", "width="+breite+",height="+hoehe+",scrollbars=no");
	}
	popup.focus();
}
function doMailto(s) {
	location.href=decryptThis(s);
}
function RdoMailto(s) {
	location.href=encryptThis(s);
}
function decryptThis(s) {
	var n=0;
	var r="mailto:";
	for(var i=0;i<s.length;i++) {
		n=s.charCodeAt(i);
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(2));
	}
	return r;
}