function initTriggers2()
{
   if (!document.getElementById('add') && !document.getElementById('locations'))
   {
       setTimeout("initTriggers()", 10);
   }
   else
   {
      try
      {
         document.getElementById("add").addEventListener("click", addAddLocations, false);
      }
      catch (e)
      {
          document.getElementById("add").attachEvent("onclick", addAddLocations);
      }
      addLocation('locations');
      addLocation('addLocations');
      addLocation('addLocations');
      addLocation('addLocations');
      autoComplete();
   }
}


// window.onload = initTriggers2;

