function showit(id)
// Shows content
{
	id.style.display = "";
}

function hideit(id)
// Hides content
{ 
	id.style.display = "none";
}
