// JavaScript Document
function newPopup(url) {
window.open(url, '_blank', 'scrollbars=no,resizable=no,height=680,width=811');
return false;
}

(function ($) {

  /* Ajax response message fade
  -------------------------------------------------------------- */
  Drupal.behaviors.twitterLinks = {
    attach: function (context, settings) {

      /* make the terms and conditions link in registration pop up */
      $('a.twitter-out').bind({
        click: function () {
          var href = $(this).attr('href');
          var openNew = window.open(href, '_blank');
          openNew.focus();
          return false;
        }
      });

    }
  };


})(jQuery);;

