// JavaScript Document

function update(c,modid)
	{
	var feld = 'c' + c;
	new Effect.Fade('' + feld, {duration: 0.6, to: 0.01,
					afterFinish: function() {
						new Ajax.Updater('' + feld, 'include/ajaxphp.php', {parameters: {func: 1, modid: ''+modid, c: ''+c},
								onComplete:  function () {
									new Effect.Appear('' + feld, {duration: 0.6, from: 0.01});
											  			 }
										   			});
											}
						});
	};
	

function load_anmeldung_dat()
	{
	counter = document.getElementById('counter').value;
	counter++;
	new Ajax.Updater('amdat', 'include/anmeldung_daten.php', { method: 'get', parameters:{counter: ''+counter}, insertion: Insertion.Bottom});
	document.getElementById('counter').value = counter;
	};