function showHide(theDiv)
{
  if (document.getElementById(theDiv).style.display == 'none')
  {
    document.getElementById(theDiv).style.display = 'block';
  }
  else
  {
	document.getElementById(theDiv).style.display = 'none';  
  }	  
}
function show(theDiv)
{
	document.getElementById(theDiv).style.display = 'block';
}
function hide(theDiv)
{
	document.getElementById(theDiv).style.display = 'none';
}
function showHide(on, off1)
{
  if (document.getElementById(on).style.display == 'none')
  {
    document.getElementById(on).style.display = 'block';
	document.getElementById(off1).style.display = 'none';
	//document.getElementById(off2).style.display = 'none';
  } 
}
function hideAll(off1, off2)
{
  document.getElementById(off1).style.display = 'none';
  document.getElementById(off2).style.display = 'none';
  //document.getElementById(off3).style.display = 'none'; 
}
