function showSub(id)
{
	getElementById(id).style.display="block";
}

function hideSub(id)
{
	getElementById(id).style.display="none";
}
