/* Stöng system box */
function closeSystemBox()
{
	$("#systemBox").hide();
}

function openEditAnswer(id)
{
	$("#edit-answer"+id).toggle("fast");
}

function openEditThread(id)
{
	$("#edit-thread"+id).toggle("fast");
}

function openclose(id){
	$('#'+id).toggle("fast");
}

function opencloseclass(id){
	alert(id);
	$('.'+id).toggle("fast");
}

function abusethreadanswer(){
	if (confirm('Är du säker på att du vill anmäla det här inlägget?\nOK = Ja\nAvbryt = Nej'))
	{
		return true;
	}
	else
	{
		return false;
	}
} 

