function openpopup (myfile, myname, breite, hoehe) {
	params = "width=" + breite + ",height=" + hoehe + ",resizable=0,status=0,scrollbars=0,toolbar=0,location=0,directories=0,menubar=1";
	newwin = window.open( myfile , myname , params)
	if (window.focus){newwin.focus()} // popup nach vorne bringen, wenn es hinten ist
}

function openpopupscroll (myfile, myname, breite, hoehe) {
	params = "width=" + breite + ",height=" + hoehe + ",resizable=0,status=0,scrollbars=1,toolbar=0,location=0,directories=0,menubar=1";
	newwin = window.open( myfile , myname , params)
	if (window.focus){newwin.focus()} // popup nach vorne bringen, wenn es hinten ist
}