// JavaScript Document
function setWidth(strURL) {

  var intWidth;
  if (navigator.appVersion.indexOf("MSIE") > 0) {
    intWidth = document.body.offsetWidth
  } else if (navigator.appName == "Netscape") {
    intWidth = window.innerWidth
  } else {
    intWidth = 750
  }

  var intCols;
  if (intWidth > 1024 ) {
    intCols = 3
  } else if (intWidth > 770) {
    intCols = 2 
  } else {
    intCols = 1
  }

  if (strURL.indexOf("?") > 0) {
    location = strURL + "&cols=" + intCols;
  } else {
    location = strURL + "?cols=" + intCols;
  }
  return false;
}

function JumpMenu(objSelector) {
  var strLocation = objSelector.options[objSelector.selectedIndex].value;
  strLocation = "#" + strLocation
  location = strLocation;
  return false;
}