function Go(kam, sub)
{
	if (kam == "")
		document.location = "main.php";
	else if (sub == "")
		document.location = "main.php?p=" + kam;
	else
		document.location = "main.php?p=" + kam + "&sp=" + sub;
}

function ccolor(color)
{
	window.event.srcElement.style.color = color;
	window.event.srcElement.style.cotextDecorationUnderline = false;
}

function toggleHidden(which)
{
	var style2 = document.getElementById(which).style;

	if (style2.display == "none")
		style2.display = "block";
	else
		style2.display = "none";
}
