// JavaScript Document
JQ(function() {

  JQ('a[@href^=http]').not('[@href*=www.paineurope.com]')

    .addClass('external-link')

    .click(function() {

      var agree = window.confirm('Please be aware that you are about to leave paineurope.com to an external website hosted by a third party.\n\nPaineurope Ltd, Mundipharma International Ltd, our sponsors and partners do not accept responsibility for content held within external websites linking to or from paineurope.com. The content of any such website in no way represents the opinions of the Paineurope Ltd, Mundipharma International Ltd, our sponsors or our partners.\n\nClick OK to visit the external website...');

      if (agree)

        window.location = this.href;

      return false;

    });
});