$(function(){    
    $('a.YesNoDialog').live('click', function(){
        var action = $(this).attr('href');
        $("<div></div>").text($(this).attr('title')).dialog({
            buttons: { 
                "Nein": function(){
                    $(this).dialog("close")
                },
                "Ja" : function(){
                    window.location.href = action;
                }
            },
            resizable: false,
            draggable: false,
            title: "Dialog"
        });
        return false;
    });
    
    $('button.YesNoDialog[type=submit]').live('click', function(){
        $(this).unbind('click');
        /*
        var action = $(this).attr('value');
        $("<div></div>").text($(this).attr('title')).dialog({
            buttons: { 
                "Nein": function(){
                    $(this).dialog("close")
                },
                "Ja" : function(){
                    window.location.href = action;
                }
            },
            resizable: false,
            draggable: false,
            title: "Dialog"
        });
        */
        return false;
    });
});
