
function button_submitt( action, target, id, parent, templ, ord_nr, todo )
{
	// Bei Bestimmten aktionen vorher abfragen
	if(todo == "_delete_")
	{
		if( confirm("Beim Löschen werden alle Unterpunkte mitgelöscht. Löschen ausführen?") == false )
			return;
	}
	
	document.picture_formular.action = action;
	document.picture_formular.target = target;
	document.picture_formular._id_.value = id;
	document.picture_formular._parent_.value = parent;
	document.picture_formular._templ_.value = templ;
	document.picture_formular._ord_nr_.value = ord_nr;
	document.picture_formular._todo_.value = todo;
	
	document.picture_formular.submit();
}

function switch_user( user, action, templ )
{
	document.picture_formular.user.value = user;
	button_submitt( action, "_self", 0, 0, templ, 0, "_edit_" );
}

function button_close( )
{
	this.window.opener = top;;
	this.window.close();
}

function PopUp()
{
    var URL = "popup.html";
    var Name = "event";
    var Fensteroptionen = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0";
    var Breite = 620;
    var Hoehe = 820;

    // RST hier für POPUP wieder aktivieren
    //window.open(URL, 'Name', Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
}
