function showDatenschutz() {
	window.open("/datenschutz.php", "datenschutz", "dependent=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=450,height=550");
}

function showPicture(pfad, breite, hoehe) {
	posX = (screen.width - breite) / 2;
	posY = (screen.height - hoehe) / 2;
	ansicht = window.open("/picturePreview.php?path="+pfad, "Bildvorschau", "status=no,dependent=yes,toolbar=no,location=no,menubar=no,scrollbars=no,resizable=no,width="+breite+",height="+hoehe+",left="+posX+",top="+posY);
}

var savedBorderColor;
var savedBackgroundColor;
function showContentBorder(obj) {
	savedBorderColor = obj.style.borderColor;
	savedBackgroundColor = obj.style.backgroundColor;
	obj.style.borderColor = "red";
	obj.style.backgroundColor = "#e0e0e0";
}

function hideContentBorder(obj) {
	obj.style.borderColor = savedBorderColor;
	obj.style.backgroundColor = savedBackgroundColor;
}
 
var hideTimer;
function showAdminLayer() {
	window.clearTimeout(hideTimer);
	document.getElementById("adminLayer").style.visibility = "visible";
}
function startHideTimer() {
	hideTimer = window.setTimeout("hideAdminLayer()", 0);
}
var showAdminLayerAlways = false;
function hideAdminLayer() {
	if (!showAdminLayerAlways) document.getElementById("adminLayer").style.visibility = "hidden";
}

var savedBG;
function AdminLayerButtonMouseOver(obj) {
	obj.style.cursor = "hand";
	savedBG = obj.style.backgroundColor;
	obj.style.backgroundColor = "#e0e0e0";
}

function AdminLayerButtonMouseOut(obj) {
	obj.style.backgroundColor = savedBG;
}


