function gohref(location)
{
  window.location.href = location;
}


function switch_on_change(master, slave_id, enable_value)
{
  var slave = document.getElementById(slave_id);
  
  if(master.value == enable_value)
  {
    slave.className = "textbox";
    slave.disabled = "";
  }
  else
  {
    slave.disabled = "disabled";
    slave.className = "select_grey";
  }
}
