
//Allows multiple dropdown menus on one page
//Used for various tools on the site
  /*Found in:
  /admins/dazzles.php
  /admins/ip-tools.php
  */
function selectTool()
  {
  var x=document.getElementById("tool").selectedIndex;
  var y=document.getElementsByTagName("option")[x].id;
  location.search=("tool="+y);
  }  
  
  
//selects the contents of another list depending on the selected option of this list
//used for /admins/activation.php
function selectListOptions()
  {
  var x=document.getElementById("independent")
  var y=document.getElementsByTagName("option")[x].id;
  }


function insertOption() {
  var y=document.createElement('option');
  y.text='Kiwi';
  var x=document.getElementById("mySelect");
  try {
    x.add(y,null); // standards compliant
    }
  catch(ex) {
    x.add(y); // IE only
  }
}