function changeImages(name, src) 
{
  var d = document; var img;
  img = null; 
  var n = name;
  if (d.images)
  {   
    img = d.images[n];
  }
  if (!img && d.getElementById)
  {
    img = d.getElementById(n);
  }
  if (!img && d.getElementsByName)
  {
    var elms = d.getElementsByName(n);
    if (elms)
    {
      for (j=0;j<elms.length;j++) 
      {   
        if (elms[j].src)
        {
          img = elms[j]; break;
        }
      }
    }
  }
  if (img)
  {
    img.src = src;
  }		
}


function Array2D ()
{
  this.items = new Array (1);
  this.items[0] = "%73%65%72%76%69%63%65%40%73%79%73%6D%69%6B%2E%64%65";
  this.items[1] = "%73%61%6C%65%73%40%73%79%73%6D%69%6B%2E%64%65";
  this.items[2] = "%69%6E%66%6F%40%70%68%6F%65%6E%69%78%63%6F%6E%74%61%63%74%2E%63%6F%6D";
  this.items[3] = "%69%6E%66%6F%72%6D%61%74%69%6F%6E%73%40%6E%65%77%72%6F%6E%2D%73%79%73%74%65%6D%2E%63%6F%6D";
  this.items[4] = "%69%6E%66%6F%40%6C%6F%79%74%65%63%2E%63%6F%6D";
  this.items[5] = "%6C%6F%6E%77%6F%72%6B%73%40%65%63%68%65%6C%6F%6E%2E%63%6F%6D";
  this.items[6] = "%4F%72%64%65%72%73%55%4B%40%74%72%69%64%69%75%6D%2E%63%6F%6D";
  this.items[7] = "%63%65%6C%73%69%75%73%40%63%65%6C%73%69%75%73%62%65%6E%65%6C%75%78%2E%6E%6C";
  this.items[8] = "%44%61%72%69%75%73%7A%2E%41%75%67%75%73%74%79%6E%6F%77%69%63%7A%40%6E%6F%72%6C%6F%6E%2E%70%6C";
  this.items[9] = "%6F%66%66%69%63%65%40%7A%64%61%6E%69%61%2E%63%6F%6D%2E%70%6C";
  this.items[10] = "%6D%69%6B%65%40%63%6F%6E%74%72%6F%6C%2D%6E%65%74%77%6F%72%6B%2D%73%6F%6C%75%74%69%6F%6E%73%2E%63%6F%2E%75%6B";
  this.items[11] = "%73%61%6C%65%73%40%65%6E%67%65%6E%75%69%74%79%2E%63%6F%6D";
  this.items[12] = "%73%61%6C%65%73%40%6C%63%6F%6E%74%72%6F%6C%73%2E%63%6F%6D";
  this.items[13] = "%61%72%6B%74%69%6B%61%40%61%72%6B%74%69%6B%61%2E%72%75";
  this.items[14] = "%73%6F%66%74%77%61%72%65%40%73%79%73%6D%69%6B%2E%64%65";
}

function doEmail (form, number)
{
  try
  {
    arrEms = new Array2D ();
    mto = "mailto:";
    document.forms[form].action = mto;
    document.forms[form].action = mto.concat(unescape (arrEms.items[number]));
    document.forms[form].submit();
  }
  catch (e) 
  {
  }
}