// JavaScript Document for NSGT

// Function Show(id)
// Display a currently hidden table where ID Element is referred by parameter 'id'

function show(id)
{
	if (document.getElementById(id).style.display == 'none')
	{
		document.getElementById(id).style.display = '';
	}
}


// Function Show(id)
// Hide a table where ID Element is referred by parameter 'id'

function hide(id)
{
	document.getElementById(id).style.display = 'none';
}
