function ShowHide()
{
  for( var i = 0; i < arguments.length; i++ )
	{
		 el=document.getElementById( arguments[i] ).style;
		 el.display=(el.display == 'block')? 'none' : 'block';
	}
	return true;
}