function open_p_udlGroup() {
	breite = 430;
	hoehe = 329
	var xPos = (screen.availWidth - breite) / 2;
	var yPos = (screen.availHeight - hoehe ) / 2;
	win = window.open("/popups/p_udlGroup.asp",'udlgroup','width='+breite+',height='+hoehe+',scrollbars=no,toolbar=no,menubar=no,screenX='+xPos+',screenY='+yPos+',left='+xPos+',top='+yPos)
	win.focus();
}

function openWindow(URL, b, h, popupname, scrollbars) {
	var PopUpName = popupname || 'PopUp';
	var breite = b || 410;
	var hoehe = h || 450;
	var ScrollBars = scrollbars || 'no';
	var xPos = (screen.availWidth - breite) / 2
	var yPos = (screen.availHeight - hoehe) / 2
	var fenster = window.open(URL, PopUpName, 'width=' + breite + ',height=' + hoehe + ',scrollbars=' + ScrollBars + ',toolbar=no,menubar=no,screenX=' + xPos + ',screenY=' + yPos + ',left=' + xPos + ',top=' + yPos)
	fenster.focus();
}


function PopUp(url, name, breite, hoehe, scrollbars) {
	var xPos = (screen.availWidth - breite) / 2
	var yPos = (screen.availHeight - hoehe) / 2

	myWindow = window.open(url, name, "menubar=no,toolbar=no,resizeable=no,scrollbars=" + scrollbars + ",width=" + breite + ",height=" + hoehe + ",screenX=" + xPos + ",screenY=" + yPos + ",left=" + xPos + ",top=" + yPos + ",screenX=" + xPos + ",screenY=" + yPos + ",left=" + xPos + ",top=" + yPos);

	if (myWindow != null) {
		myWindow.focus();
	}
	else {
		alert('Offenbar haben Sie einen PopUp - Blocker aktiviert.\nDeshalb können Sie das Angebot der Knorr-Webseite nur eingeschränkt nutzen.\nBitte deaktivieren Sie den Blocker für www.knorr.de um alle Funktionen nutzen zu können.');
	}
}
