// JavaScript Document
function FensterOeffnen (Adresse) {
  MeinFenster = window.open(Adresse, 'Review', "scrollbars=yes,width=800,height=600");
  MeinFenster.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function swapImage(element, newimage) {
	var oldsrc = element.src
	element.src = newimage
	if (!element.onmouseout)
		element.onmouseout = function (event) { swapImage(this, oldsrc); };
}
