
function recenti_ShowHide(s)
{

	var o = document.getElementById("recenti");

	if (o.style.display == 'none')
	{
		o.style.display = '';
		document.getElementById("recenti_img").src = smf_images_url + '/collapse.gif';
		if (!s) recenti_CookieSet('recenti_hide', 0);
		//Shoutbox.loading = false;
		//Shoutbox.hide = false;
		//Shoutbox_GetMsgs();
	}
	else
	{
		o.style.display = 'none';
		document.getElementById("recenti_img").src = smf_images_url + '/expand.gif';
		if (!s) recenti_CookieSet('recenti_hide', 1);
		//if (Shoutbox.msgs !== false) window.clearTimeout(Shoutbox.msgs);
		//Shoutbox.loading = true;
		//Shoutbox.hide = true;
	}

	return false;
}


function recenti_CookieSet(n, v)
{
	document.cookie = n + '=' + escape(v);
}

function recenti_CookieGet(n)
{
	var c = document.cookie;
	var o = c.indexOf(n + '=');
	if (o == -1)
		return '';

	o += n.length + 1;
	e = c.indexOf(';', o);
	return unescape(e == -1 ? c.substring(o) : c.substring(o, e));
}






