function hideAll(obj)
{
    document.getElementById(obj).style.display = "none";
}

function showCurrent(obj)
{
	document.getElementById(obj).style.display = "block";
}

