function setHighlight(theID,theColor,mouse)
{
  document.getElementById(theID).setAttribute('bgcolor',theColor,0);
  document.body.style.cursor=mouse;
}

function setImage(theID,theImage)
{
  document.getElementById(theID).setAttribute('src',theImage,0);
}

function setTextColor(theID,theColor)
{
  document.getElementById(theID + 'a').style.color=theColor;
  document.getElementById(theID + 'b').style.color=theColor;
}

function getPage(page)
{
  document.location.href = page;
}

function selectNav(mytarget,myform,mylist)
{
  var w = document[myform][mylist].selectedIndex;
  var section = document[myform][mylist].options[w].value;
  window.location.href = mytarget + "&" + mylist + "=" + section;
}

function selectProduct(myproduct)
{
  var w = document[myform][mylist].selectedIndex;
  var section = document[myform][mylist].options[w].value;
  window.location.href = window.location.href + "&" + mylist + "=" + section;
}
