function showIfTrue( obj, cond )
{
	obj.style.display= ( (cond) ? '':'none');
}

function show(obj)
{
	obj.style.display = '';
}

function hide(obj)
{
	obj.style.display = 'none';
}