var URLsToPopUp = "";
URLsToPopUp += "/contact-us/our-blog/" + "|";

$(document).ready(function(){
  $('a').each(function(){
    var searchstring = this.href.toLowerCase().replace(window.location.protocol + '//' + window.location.host,'') + '|';
    //console.log(searchstring);
    if (searchstring.length > 2 && URLsToPopUp.indexOf(searchstring) > -1)
      $(this).attr("target","_blank");
  });
});


