$(document).ready(function() {
		
	$( "#dialog-confirm" ).dialog({
	 	autoOpen: false,
		resizable: false,
		show: 'slide',
		height: 260,
		modal: true,
		buttons: {
			"Ja": function() {
				$( this ).dialog( "close" );
				window.open('https://survey.dmg.com/lime/index.php?sid=81127&lang=de','_blank');
				saveUser();
			},
			"Nein": function() {
				$( this ).dialog( "close" );
                                                                     saveUser();
			}
		}
	});
	
	// Prüfe nach 5 Sekunden ob jetzt Zeit ist die Dialogbox zu öffnen
	setTimeout(function(){ checkDialogOpen() }, 5000);
                
		  
});

