/**
 * Bild austauschen
 */
function changeImage(imgId, imgSrc){
	document.getElementById(imgId).src = imgSrc;
}

/**
 * Öffnet ein neues Fenster nur als Rahmen
 */
function openWindow(url){
	var newBrWin = window.open(url,'newBrWin','toolbar=no,location=no,manubar=no,scrollbars=yes,status=yes,resizable=yes');
	newBrWin.focus();
}