function switchForm(id)
{
	form_div = $('#' + id)
	if (form_div.css('display') == 'none')
	{
		form_div.show()
	}
	else
	{
		form_div.hide()
	}
	return false;
}

function podajIdKomentarza(id) {
	input = $('#abuse_comment_id');
	input.attr('value', id);
}