// Change this value for the production server

//DEV
//var searcAction = "http://tiprcm01.tyco.com:8765/query.html";

//STAG
var searcAction = "http://search.tyco.com/query.html";

function searchSubmit(form)
{
  try
  {
    form.action = searcAction;
  }
  catch(e)
  {
    alert(e.message);
  }
}