
function tileRemove(Which) {
  // Ask for confirmation before removing a tile or channel.
  aStr='Are you sure you want to remove this ' + Which + '?'
  if(confirm(aStr))
    return true;
  else
    return false;
}


