 function open_centered_dialog(id) {
    	var x = ($(window).width() / 2) - ($(id).dialog('option', 'width') / 2);
    	var y = ($(window).height() / 2) - ($(id).dialog('option', 'height') / 2);
    	$(id).dialog('option','position', [x,y] );
    	$(id).dialog('open');
 }
 
 function set_dialogs_button_style() {
    
        $('.ui-dialog-buttonpane').find('button').each(function() {
            if ($(this).html() == 'Abbrechen') {
                $(this).addClass('cancelButton');
            }
            
            
      	  if ($(this).html() == 'Jetzt kostenlos anmelden!') {
      		 $(this).addClass('registerButton');
      	  }

            if ($(this).html() == 'Veröffentlichen') {
                $(this).addClass('applyButton');
            }
        	
        });
    
 }

function colorize_dialogs_buttons(colors) {

    count = colors.length;

    $('.ui-dialog-buttonpane:visible').find('button').each(function(index) {
        
        color = colors[index%count] + '!important';
        $(this).attr('style', 'background-color: '+color);
    
    });
}
