// JavaScript Document

function neuenotiz(fzg_nr)
{
	//$('fzgnotizfrm').serialize(true);
	var url = 'ajax/neue_notiz.php';
	var notice = $('notice');
	
	new Ajax.Request(url, {
	  method: 'post',
	  parameters: Form.serialize("fzgnotizfrm"),
	  onSuccess: function(transport) {
		if (transport.responseText.match(/erfolg/))
		  notice.update('Eintrag erfolgreich gespeichert!').setStyle({ background: '#dfd' }); 
		else
		  notice.update(transport.responseText+'<p>Fehler! Bitte Christian Bescheid sagen').setStyle({ background: '#fdd' });
	  }

	});
	 Effect.Fade('notefield', { duration:3.0 } );
	
}

function showNotizen(fzgnr)
{
	$('notizfeld').toggle();
	new Ajax.Updater('notizfeld', 'ajax/holenotizen.php?fzg='+fzgnr);
	
}

function deletenotiz(nid, fzgnr)
{
	new Ajax.Request('ajax/deletenotiz.php?nid='+nid);
	new Ajax.Updater('notizfeld', 'ajax/holenotizen.php?fzg='+fzgnr);
}




function openNotizFeld()
{
	$('notefield').Show();
}
