// Magyarfutball.hu js

function show_hide(id) {
	var box = document.getElementById(id);
	if (box.style.display=="none") { box.style.display=""; }
	else { box.style.display="none"; }
}

function sh_updates() {
	show_hide('updates_short');
	show_hide('updates_long');
}

function bbCode(id, text)
{
	var box = document.getElementById(id);
	box.value += text;
}