/////
// The "Popup()" function will deliver a new window with specific user-details
//
// @param  string  url
// @param  string  url
function Popup(url, window_name)
{
        settings = "toolbar=no, location=no, directories=no,"+
                "status=no, menubar=no, scrollbars=yes,"+
                "resizable=yes, width=500, height=400";

        NewWindow = window.open(url, window_name, settings);

		// SD:02.01.2003 : Das neue Fenster in den Vordergrund holen
		NewWindow.focus();
}  // end of the 'Popup()' function

function cbx_selection_changed(form)
{
	form.submit();
}
