// JavaScript Document

function externalLink(url) {
			jConfirm('<p><b>You are now leaving the audited section of the 2010 Annual Report.</b></p><p>Would you like to proceed?</p>', '', function(r) {
				if (r==true){
					window.open(url);
				};
			});
		};
