function ws_list_add(schedID) {
	jQuery.ajax({
		type: 'GET',
		url: 'index.php',
		data: {eID: 'tx_seminarorganizer', cmd: 'add', id: schedID },
		dataType: 'text',
		success: function(result){
			jQuery('#seminarorganizer-basket-content').html(result);
		}
	});
}


function ws_list_clear() {
	jQuery.ajax({
		type: 'GET',
		url: 'index.php',
		data: {eID: 'tx_seminarorganizer', cmd: 'clear' },
		dataType: 'text',
		success: function(result){
			jQuery('#seminarorganizer-basket-content').html(result);
		}
	});
}

