
function openWindow(url)
{
  if (url != "#")
  {
    var sizeX = 828;
    var sizeY = 900;
    var Features
    Features  = 'menubar=yes,location=yes,toolbar=yes,directories=yes,'
    Features += ',scrollbars=yes,status=yes,resizable=yes'
    Features += ',outerWidth='+sizeX+',outerHeight='+sizeY
    Features += ',width='+sizeX+',height='+sizeY
//    Features += ',left='+80+',top='+60+'screenX='+80+',screenY='+60;
    winPopupWindow = window.open(this.location, "brotzman", Features);
    winPopupWindow.focus();
  }
}

function killBox(boxId)
{
  var elem = document.getElementById(boxId);
  elem.style.display = 'none';
  elem.style.visibility = 'hidden';
  return true;
}

function hideBox(boxId)
{
  var imgId = boxId + '_min';
  var txtId = boxId + '_txt';
  var elem = document.getElementById(txtId);
/*
  document.images[imgId].src = elem.style.display == 'none' ? 
						     'images/min.gif' : 
                                                     'images/max.gif';
*/
  elem.style.display    = elem.style.display      == 'none' ? 
						     'block' : 'none';
  elem.style.visibility = elem.style.visibility   == 'hidden' ? 
                                                     'visible' : 'hidden';
  return true;
}

