<!--

function openWindow(theURL,winName,features, w, h) {		
	var posLeft = screen.width/2 - w/2;
	var posTop = screen.height/2 - h/2;		
	popUpWindow = window.open(theURL,winName,features + ',left=' + posLeft + ',top=' + posTop);		
	popUpWindow.focus();
}

function openSimpleWindow(theURL, w, h) {		
	var posLeft = screen.width/2 - w/2;
	var posTop = screen.height/2 - h/2;
	var features = 'toolbar=no,location=no,status=no,scrollbars=no,width='+w+',height='+h;		
	popUpWindow = window.open(theURL,'window',features + ',left=' + posLeft + ',top=' + posTop);		
	popUpWindow.focus();
}

function changeIFramePage(newPage) {
	document.getElementById('Detailansicht').src = newPage;
}

//-->
