function showObject(type, id)
{
  switch (type)
  {
    case "A":
      location='/explore/states/'+id;
      break;
    case "B":
      location='/explore/byways/'+id;
      break;
    case "S":
      location='/explore/byways/'+byway_id+'/places/'+id;
      break;
  }
  
}

function showMap(type, id, region)
{
  switch (type)
  {
    case "A":
      loc = "/explore/states/"+id+"/maps.html";
      break;
    case "B":
      loc = "/explore/byways/"+id+"/travel.html";
      break;
    case "S":
      loc = "/explore/byways/"+byway_id+"/places/"+id+"/travel.html";
      break;
  }
  
  if (region)
  {
  	loc = loc + "?map=" + region;
  }

  location = loc;
}

function showURL(address, target)
{
  address = '/offsite?url=' + address;
  location = address;
}

