function toggleSub(sub,opt)
{
	element = document.getElementById(sub);
	// element_plus = document.getElementById(plus);     

	if(element.style.display == "block")
	{
		element.style.display = "none";
		document.cookie =  sub + "=hidden";
	}
	else
	{
		element.style.display = "block";
		document.cookie = sub + "=show";
	}
}

function openImage(image)
{
	window.open('./res/pages/image.php?image=' + image ,'','width=800,height=600');
}

function openShoutbox()
{
	window.open('./res/pages/_shoutbox_big.php','','width=500,height=800,scrollbars=yes');
}

function checkToggle()
{
	alert(document.cookie);
}

function FilterDates(target)
{
	//alert(target.value);
	document.location = "?navigate=date&filter=" + target.value;
}
