/* What: Common Marketing Website Funtions When: January 2007 Who: Paul Legan */ var popUpWin = 0; function popUpWindow(URLStr, left, top, width, height) { if(popUpWin) { if(!popUpWin.closed) popUpWin.close(); } popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+''); } function popUpWindowNoScroll(URLStr, left, top, width, height) { if(popUpWin) { if(!popUpWin.closed) popUpWin.close(); } popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+''); } function fixExternalLinks() { $("a").each(function(i) { if (this.getAttribute('rel') == 'external') { this.onclick = function() { popUpWindow('/consumer/misc/disclaimer.jsp?url='+escape(this.href), (screen.width - 480) / 2, (screen.height - 640) / 2, 640, 480); return false; } } }); } function tVideoClick(vidName) { if (vidName == 'about') dcsMultiTrack('DCS.dcsuri' , '/link/capsules/capsules_video.html', 'WT.ti', 'Capsules Video Play'); else if (vidName == 'how') dcsMultiTrack('DCS.dcsuri' , '/link/howtotake/howtotake_video.html', 'WT.ti', 'How to Take Spiriva Video Play'); else if (vidName == 'tips') dcsMultiTrack('DCS.dcsuri' , '/link/success/tips_video.html', 'WT.ti', 'Tips for Success Video Play'); else return; } // Generic print function function printPage() { window.print(); } $(document).ready(function() { fixExternalLinks(); });