function openPopup(url, height, width)
{
	var a = url.split("/");
	var b = a[a.length-1].split(".");
	winname = b[0]+width+height;
	var popupWindow = window.open(url, winname, 'width='+width+',height='+height+',resizable=no,location=no,status=no,toolbar=no,menubar=no,hotkeys=yes,scrollbars=yes');
	popupWindow.focus();
	return false;
}

function send_enc_mail(to)
{
	part1 = "a";
	part2 = "%40"; 
	location.href='m'+part1+'ilto:'+to+part2+"wir-im-vorgebirge.de";
}