﻿function stopError()
{
  return true;
}

function ContactInfo(text)
{
  var name = '&#105;nf&#111;';
  ContactGeneral(text,name);
}

function ContactSales(text)
{
  var name = '&#115;al&#101;s';
  ContactGeneral(text,name);
}

function ContactWebsite(text)
{
  var name = 'w&#101;bs&#105;t&#101;';
  ContactGeneral(text,name);
}

function ContactSupport(text)
{
  var name = 's&#117;pp&#111;&#114;t';
  ContactGeneral(text,name);
}

function ContactGeneral(text,name)
{
  var path = 'hr';
  var go = '&#109;&#97;&#105;lt&#111;';
  var office = '&#64;&#97;rt&#98;v&#46;&#101;u';
  var post = '\">';
  if (text == "") {
    text = name + office;
  }
  path += 'e';

  document.write( '<a ' + path + 'f=\'' + go + ':' + name + office + '\'>');
  document.write( text );
  document.write( '<\/a>' );
  document.write( '<span style=\'display: none;\'>' );
}

window.onerror = stopError;

