// Shows the 'div' element specified by "what"
function showIt(what)
{
   var divns6 = document.getElementsByTagName("div");
   divns6[what].style.visibility = 'visible';
return;
} // end showIt

// Hide all dynamic 'div' elements -
// there must be a specific entry for each element
// can't just hide all - there are some static ones
function hideAll()
{
   var divns6 = document.getElementsByTagName("div");
   divns6['special'].style.visibility = 'hidden';
   divns6['brewin'].style.visibility = 'hidden';
   divns6['huggin'].style.visibility = 'hidden';
return;
} // end hideIt


// hide a specific 'div' element -
function hideIt(what)
{
   var divns6 = document.getElementsByTagName("div");
   divns6[what].style.visibility = 'hidden';
return;
} // end hideMe

// function to open a new window
function newWin(cUrl,cName,cFeatures) 
{
  nWin = window.open(cUrl,cName,cFeatures);
}
