function leavingNETSiteDisclaimer(url) { // To track all outbound links with Google Analytics $(document).ready( function() { //$.ga.trackPageview('/outgoing'); $.ga.trackEvent('/outgoing','/outgoing','',''); } ); var message = "The link you have chosen leads to a site maintained by a third party over whom Novartis has no control. As such, Novartis makes no representation as to the accuracy or any other aspect of the information on this site."; if (confirm(message)) { var features = "height=600,width=800,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes"; var newWindow = window.open(url, "_blank", features); newWindow.focus(); } return; }