//
// Namespace: InsertionList:
//

// Namespace sicherstellen.
if( typeof( InsertionList ) == "undefined" )
	InsertionList = {};

InsertionList.actionState = true;

InsertionList.RemoveInsertion = function( insertionID, title, action )
{
	InsertionList.actionState = false;
	
	// Benutzer-Bestätigung einholen.
	if( confirm( "Möchten Sie das Inserat mit der Anzeigennummer \"" + insertionID.toString() + "\" und dem Titel \"" + title.toString() + "\" wirklich entfernen?" ) )
		window.open( action, '_self' );
};

InsertionList.InsertionAction = function( action )
{
	if( InsertionList.actionState )
		window.open( action, '_self' );
	else
		InsertionList.actionState = true;
};
