function togFilter(obj){
  if(obj.innerHTML == 'Adult Filter Off'){
    obj.innerHTML = 'Adult Filter On';
    document.cookie = 'aFilter = on; path=/';
    document.getElementById('filterText').style.color = '#0099ff';
  }else{
    obj.innerHTML = 'Adult Filter Off';
    document.cookie = 'aFilter = off; path=/';
    document.getElementById('filterText').style.color = '#b60000';
  }
}

function selectCode(obj){
  document.getElementById(obj).focus();
  document.getElementById(obj).select();
}

function togType(obj){
  var ID = obj.id.substr(4);
  var i = 1;
  while(document.getElementById('div'+i)){
    document.getElementById('div'+i).style.backgroundColor = (ID == i) ? '#ccff99' : '#dddddd';
    i++;
  }
  return;
}
