/* Rollover fuer IE, da diese Schabracke das Pseudo-Element :hover nur bei Links kennt */
function MenuRollover(elem,zustand) {
	if (document.all && document.getElementById && !window.opera) {
		if (elem.className != 'active') {
			if (zustand == 'over') {
				elem.style.borderBottom = '1px solid #000';
			} else {
				elem.style.borderBottom = '1px solid #FFF';
			}
		}
	}
}

function TeamImages(elem,img) {
	if (document.images) {
		document.images[elem].src = img;
	}
}

function openWindow(url) {
	fenster = open(url, "tsunamiPostKontakt", "width=445,height=400,toolbar=0,location=0,directories=0,status=1,menuBar=0,scrollBars=1,resizable=0");
	setTimeout('fenster.focus()', 300);
}

function targetBlank(url) {
		open(url);
}

