function swapDisplayObj(id) 
{
	var Obj = $(id);
	if (Obj.style.display == 'none') 
	{
		Obj.style.display = 'block';
	} else {
		Obj.style.display = 'none';
	}
}

function showObject(id) 
{
	$(id).style.display = 'block';
}

function closeObject(id) 
{
	$(id).style.display = 'none';
}
