$(document).ready(function(){
  $('.fancyboxEmailLink').fancybox({
    showCloseButton: true,
    showNavArrows: false,
    padding: 0,
    margin: 0,
    width: 620,
    height: 248,
    titleShow: false
  });
  $("a.fancybox").each(function(){
    if($(this).attr("target") == "_blank")
      $(this).removeAttr("target");

    $(this).fancybox();
  });
});

