<!--
function setBgColor (elementID, color) {
  if (document.all)
    document.all[elementID].style.backgroundColor = color;
  else if (document.getElementById)
    document.getElementById(elementID).style.backgroundColor = color;
}
function setBackgroundImage (elementID, imgURL) {
  if (document.all)
    document.all[elementID].style.backgroundImage = 'url(' + 'mat/' + imgURL + '.jpg' + ')';
  else if (document.getElementById)
    document.getElementById(elementID).style.backgroundImage = 'url(' + 'mat/' + imgURL + '.jpg' + ')';
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->