

// Funkcja ustawia odpowiednie pola formularza przed jego wyslaniem a nastepnie go wysyla
function newsFormSubmit(button, src)
{
	button.form.elements['nws_id'].value = button.name;

	if(button.value == 'Usuń')
	{
		if(confirm('Czy na pewno chcesz usun±ć ten wpis?'))
		{
			if(src == "N")
				button.form.action = "index.php?content=1";
			else 
				button.form.action = "index.php?content=2";				
				
			button.form.elements['nws_action'].value = "D";
		}
		else
			return;
	}
			
	button.form.submit();
}
