function confirmAction(message)
{
    if( confirm(message) )
    {
        return true;
    }
    else
    {
        return false;
    }
}

function hideObj(id)
{
	document.getElementById(id).style.visibility	= 'hidden';
	document.getElementById(id).style.display		= 'none';
}
function showObj(id)
{
	document.getElementById(id).style.visibility	= 'visible';
	document.getElementById(id).style.display		= '';
}

function toggleVis(id)
{
	if (document.getElementById(id).style.visibility	== 'hidden')
		showObj(id);
	else
		hideObj(id);
}


