﻿
// flash menu swapper

function autoFocus()
{
  var e = null;
  for(i = 0; i < document.theForm.elements.length; i++)
  {
    if(document.theForm.elements[i].type == "text")
    {
      e = document.theForm.elements[i];
      e.focus();
      setCursorTo(e, 0);
      break;
    }
  }
}

// country image swapper on aboutus page

function swapCountry(code)
{
  var e = getElement("countryLocator");
  if(e)
  {
    switch(code)
    {
      case "uk":
        e.src = "/_images/maps/europe-uk.gif";
        break;
      case "cs":
        e.src = "/_images/maps/europe-cs.gif";
        break;
      case "de":
        e.src = "/_images/maps/europe-de.gif";
        break;
      default:
        e.src = "/_images/maps/europe.gif";
        break;
    }
  }
}

function showCompanyPopup()
{
  showPopup("/companyInfo.html", 300, 150);
}