function partHl(id, state)
{
	if(state)
	{
		document.getElementById("gpart"+id).style.color="#8dd8f8";
	}
	else
	{
		document.getElementById("gpart"+id).style.color="#3399cc";
	}
	
}



function hideSubparts()
{
	tags=document.getElementsByTagName("div");
	for(i=0; i<tags.length; i++)
	{
		if(tags[i].className=="disact_sub")
		{
			tags[i].style.display="none";
		}
	}
}



function selectPart(id, url)
{
	document.location="index.php?"+url;
}