function OpenMailer(one,two,three)
{
  if (one==undefined)
  {
    one='info';
  }
  if (two==undefined)
  {
    two='landc';
  }
  if (three==undefined)
  {
    three='ru';
  }
  location.href='mailto:' + one + '@' + two + '.' + three;
}