
function getResult(){
	// Kontrolle der Übergabeparameter
	if($F('raumname') == ''){
		new Ajax.Updater('liste', 'components/com_fmflaeche/backgroundFunctions.php?function=flaeche&type=show', {asynchronous: true});
	}
	else{
		// Übergabe der Werte an ein PHP-Berechnungs-Script
		new Ajax.Updater('liste', 'components/com_fmflaeche/backgroundFunctions.php?function=flaeche&type=add&'+$('fleingabe').serialize(), {asynchronous: false});
		$('fleingabe').reset();
	}
}

function printList(){
	window.open("components/com_fmflaeche/backgroundFunctions.php?function=flaeche&type=print&"+$('ekliste').serialize(), "printWin");
}

function deleteList(){
  new Ajax.Request("components/com_fmflaeche/backgroundFunctions.php?function=delete", {asynchronous:true});
  location.reload();
}

