// 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;
}

function postbild(imgId) {
	var img = document.getElementById(imgId);
	var addr = imgId + "@schwerzmannrothenfluh.com";
	var lnk = document.createElement("a");
	lnk.href = "mailto:" + addr;
	if (typeof img != "object") {
		img = document.createTextNode(addr);
	}
	lnk.appendChild(img.cloneNode(true));
	img.parentNode.replaceChild(lnk, img);
}

function over(img) {
	document.images["p-" + img].src = "/site/pix/corporate/" + img + "-1.gif";
}
function out(img) {
	document.images["p-" + img].src = "/site/pix/corporate/" + img + "-0.gif";
}


