// Objekt-Referenz holen
function getObject(id) { 
	if (document.all) {
		if (typeof document.all[id] != "undefined" && document.all[id] != null)
			return document.all[id];
	}
	else if (document.getElementById) { 
		if (typeof document.getElementById(id) != "undefined" && document.getElementById(id) != null)
			return document.getElementById(id);
	}
	return false;
}

// Grosses Bild zentrieren
function platziere(img) {
	var maxHeight = 260;
	var rest = maxHeight - img.height;
	if (rest > 1) {
		img.style.marginTop = Math.floor(rest * 0.33) + "px";
	}
	// Kontextmenü deaktivieren
	img.oncontextmenu = function() { return false; };
}

// Spam-geschützte E-Mail-Adresse
function elektropost(teil1, teil2, teil3) {
	var adresse = teil1 + "@" + teil2 + "." + teil3;
	return "<a href=\"" + "mai" + "lto:" + adresse + "\">" + adresse + "</a>";
}

