function showHide(obj)
{
	var theObj = document.getElementById(obj);
	
	if(theObj.style.display == "none") 
	{
		theObj.style.display = '';
	}else{
		theObj.style.display = 'none';
	}
}