
/* Funktion som används för dölja/visa adminboxar */
function showEditor(id){

	if(document.getElementById(id).style.display == "inline"){
		document.getElementById(id).style.display = "none";
	}
	else{
		document.getElementById(id).style.display = "inline";
	}

}
