function p505_quiz_removeFromProfile(id, element_id)
{
	if(confirm('Opravdu chcete výsledek kvízu odebrat ze svého profilu?'))
	{
		$.post(path + language + '/' + p505_quiz_removeFromProfile_URL,
			{
				id: id
			},
			function(xml)
			{
				if($(xml).find('error').text() == '0')
				{
					$("#" + element_id).show();
					$("#" + element_id).animate( {height: 'toggle', opacity: 'toggle'}, 400 );
				}
			}
		);
	}
}

function p505_quiz_form__onKeyUp(element, element_id)
{
	if(element.value != "")
	{
		$('#' + element_id).attr("checked", "checked");
	}
	else
	{
		$('#' + element_id).removeAttr("checked");
	}
}
