// JavaScript Document
function showObj(obj)
	{
		obj.style.display='block';
	}
	
function hideObj(obj)
	{
		obj.style.display='none';
	}	
	
function getObj(id)
	{
		return document.getElementById(id);	
	}
