$(function(){
    $("input:submit,.button").button(5);
});


function teilnahmebedingung(){
	$("#dialog").dialog("destroy");
	$('#dialog').load('/scripte/teilnahmebedingungen.php',function(){
		$("#dialog").dialog({
			title:'Teilnahmebedingung akzeptieren',
			resizable: true,
			height:400,
			width:800,
			modal: true,
			draggable:true,
			buttons: {
				Cancel: function() {
					$(this).dialog('close');
					return false;
				}
			}
		});
	});
	return false;
}
