/* javascript for the front page */

function doCategory(select)
{
	if(select.value == "all")  //All
	{
		window.location.href = "/";
	}
	else
	{
		window.location.href = "?action=displayCategory&ID=" + select.value;
	}
}

function doArchive(select)
{
	if(select.value == "now")
	{
		window.location.href = "/";
	}
	else
	{
		var date = select.value.split("|");
		window.location.href = "?action=displayMonth&month=" + date[1] +"&year=" + date[0];
	}
}