function antiBotEmail(elementName) {
  var s1 = "info";
  var s2 = "@";
  var s3 = "globalitcreations.com";
  var s4 = s1 + s2 + s3;

  $(elementName).html("<a href=" + "mail" + "to:" + s4 + ">" + s4 + "</a>");
}

function antiBotEmailIcon(elementName) {
  var s1 = "info";
  var s2 = "@";
  var s3 = "globalitcreations.com";
  var s4 = s1 + s2 + s3;

  $(elementName).html("<a href=" + "mail" + "to:" + s4 + ">" + "<img src='images/icons/email.png'" + "/" + ">" + "</a>");
}

