function HideShow(obj)
{
	obj.style.display = (obj.style.display == 'none') ? '' : 'none';
}

