CINXE.COM

BBC - My Web My Way - Frequently asked questions (FAQ)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB"><head profile="http://dublincore.org/documents/dcq-html/"><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("http://www.bbc.co.uk:80/accessibility/faq.shtml","20191003051927","https://web.archive.org/","web","/_static/", "1570079967"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title>BBC - My Web My Way - Frequently asked questions (FAQ)</title><style type="text/css"> #archive-mothballed-message a:hover span { text-decoration:underline; } #blq-container #archived-mothball-message a { padding-left:250px; padding-top:17px; background-position: 180px 10px; } #archived-mothball-message a { display:block; height:56px; background:url(/web/20191003051927im_/http://www.bbc.co.uk/globalresources/mothball-images/i.gif) 100px 10px no-repeat; color:#666; text-decoration:none; padding-left:160px; padding-top:12px; font-size:20px; font-family: verdana,helvetica,arial,sans-serif; font-weight: normal; } </style><meta name="description" content="Frequently asked questions (FAQ) about the My web my way site and related accessibility issues"><meta name="keywords" content="BBC, Accessibility, disability, browser, computer, keyboard, mouse, Windows, Mac, Linux, BBC online"><link rel="schema.dcterms" href="http://purl.org/dc/terms/"><meta name="DCTERMS.created" content="2011-01-14T09:00:00Z"><meta name="DCTERMS.modified" content="Thursday, 11-Aug-2011 13:00:47 BST"><!-- Glow cachebust: --><!-- Barlesque 2.60.9 --><link rel="schema.dcterms" href="http://purl.org/dc/terms/"><link rel="index" href="http://www.bbc.co.uk/a-z/" title="A to Z"><link rel="copyright" href="https://web.archive.org/web/20191003051927/http://www.bbc.co.uk/terms/" title="Terms of Use"><link rel="icon" href="https://web.archive.org/web/20191003051927im_/http://www.bbc.co.uk/favicon.ico" type="image/x-icon"><meta name="viewport" content="width = 974"><link rel="stylesheet" type="text/css" href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/89372a4380f1256f639586de4add7d4f0f0430ee.css"><script type="text/javascript">/*<![CDATA[*/ (function(undefined){if(!window.bbc){window.bbc={}}var ROLLING_PERIOD_DAYS=30;window.bbc.Mandolin=function(id,segments,opts){var now=new Date().getTime(),storedItem,DEFAULT_START=now,DEFAULT_RATE=1,COOKIE_NAME="ckpf_mandolin";opts=opts||{};this._id=id;this._segmentSet=segments;this._store=new window.window.bbc.Mandolin.Storage(COOKIE_NAME);this._opts=opts;this._rate=(opts.rate!==undefined)?+opts.rate:DEFAULT_RATE;this._startTs=(opts.start!==undefined)?new Date(opts.start).getTime():new Date(DEFAULT_START).getTime();this._endTs=(opts.end!==undefined)?new Date(opts.end).getTime():daysFromNow(ROLLING_PERIOD_DAYS);this._signupEndTs=(opts.signupEnd!==undefined)?new Date(opts.signupEnd).getTime():this._endTs;this._segment=null;if(typeof id!=="string"){throw new Error("Invalid Argument: id must be defined and be a string")}if(Object.prototype.toString.call(segments)!=="[object Array]"){throw new Error("Invalid Argument: Segments are required.")}if(opts.rate!==undefined&&(opts.rate<0||opts.rate>1)){throw new Error("Invalid Argument: Rate must be between 0 and 1.")}if(this._startTs>this._endTs){throw new Error("Invalid Argument: end date must occur after start date.")}if(!(this._startTs<this._signupEndTs&&this._signupEndTs<=this._endTs)){throw new Error("Invalid Argument: SignupEnd must be between start and end date")}removeExpired.call(this,now);if((storedItem=this._store.getItem(this._id))){this._segment=storedItem.segment}else{if(this._startTs<=now&&now<this._signupEndTs&&now<=this._endTs&&this._store.isEnabled()===true){this._segment=pick(segments,this._rate);if(opts.end===undefined){this._store.setItem(this._id,{segment:this._segment})}else{this._store.setItem(this._id,{segment:this._segment,end:this._endTs})}log.call(this,"mandolin_segment")}}log.call(this,"mandolin_view")};window.bbc.Mandolin.prototype.getSegment=function(){return this._segment};function log(actionType,params){var that=this;require(["istats-1"],function(istats){istats.log(actionType,that._id+":"+that._segment,params?params:{})})}function removeExpired(expires){var items=this._store.getItems(),expiresInt=+expires;for(var key in items){if(items[key].end!==undefined&&+items[key].end<expiresInt){this._store.removeItem(key)}}}function getLastExpirationDate(data){var winner=0,rollingExpire=daysFromNow(ROLLING_PERIOD_DAYS);for(var key in data){if(data[key].end===undefined&&rollingExpire>winner){winner=rollingExpire}else{if(+data[key].end>winner){winner=+data[key].end}}}return(winner)?new Date(winner):new Date(rollingExpire)}window.bbc.Mandolin.prototype.log=function(params){log.call(this,"mandolin_log",params)};window.bbc.Mandolin.prototype.convert=function(params){log.call(this,"mandolin_convert",params);this.convert=function(){}};function daysFromNow(n){var endDate;endDate=new Date().getTime()+(n*60*60*24)*1000;return endDate}function pick(segments,rate){var picked,min=0,max=segments.length-1;if(typeof rate==="number"&&Math.random()>rate){return null}do{picked=Math.floor(Math.random()*(max-min+1))+min}while(picked>max);return segments[picked]}window.bbc.Mandolin.Storage=function(name){this._cookieName=name;this._isEnabled=(bbccookies.isAllowed(this._cookieName)===true&&bbccookies.cookiesEnabled()===true)};window.bbc.Mandolin.Storage.prototype.setItem=function(key,value){var storeData=this.getItems();storeData[key]=value;this.save(storeData);return value};window.bbc.Mandolin.Storage.prototype.isEnabled=function(){return this._isEnabled};window.bbc.Mandolin.Storage.prototype.getItem=function(key){var storeData=this.getItems();return storeData[key]};window.bbc.Mandolin.Storage.prototype.removeItem=function(key){var storeData=this.getItems();delete storeData[key];this.save(storeData)};window.bbc.Mandolin.Storage.prototype.getItems=function(){return deserialise(this.readCookie(this._cookieName)||"")};window.bbc.Mandolin.Storage.prototype.save=function(data){window.bbccookies.set(this._cookieName+"="+encodeURIComponent(serialise(data))+"; expires="+getLastExpirationDate(data).toUTCString()+";")};window.bbc.Mandolin.Storage.prototype.readCookie=function(name){var nameEQ=name+"=",ca=window.bbccookies.get().split(";"),i,c;for(i=0;i<ca.length;i++){c=ca[i];while(c.charAt(0)===" "){c=c.substring(1,c.length)}if(c.indexOf(nameEQ)===0){return decodeURIComponent(c.substring(nameEQ.length,c.length))}}return null};function serialise(o){var str="";for(var p in o){if(o.hasOwnProperty(p)){str+='"'+p+'"'+":"+(typeof o[p]==="object"?(o[p]===null?"null":"{"+serialise(o[p])+"}"):'"'+o[p].toString().replace(/"/g,'\\"')+'"')+","}}return str.replace(/,\}/g,"}").replace(/,$/g,"")}function deserialise(str){var o;eval("o = {"+str+"}");return o}})(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (typeof bbccookies_flag === 'undefined') { bbccookies_flag = 'ON'; } showCTA_flag = true; cta_enabled = (showCTA_flag && (bbccookies_flag === 'ON') ); (function(){var e="ckns_policy",m="Thu, 01 Jan 1970 00:00:00 GMT",k={ads:true,personalisation:true,performance:true,necessary:true};function f(p){if(f.cache[p]){return f.cache[p]}var o=p.split("/"),q=[""];do{q.unshift((o.join("/")||"/"));o.pop()}while(q[0]!=="/");f.cache[p]=q;return q}f.cache={};function a(p){if(a.cache[p]){return a.cache[p]}var q=p.split("."),o=[];while(q.length&&"|co.uk|com|".indexOf("|"+q.join(".")+"|")===-1){if(q.length){o.push(q.join("."))}q.shift()}f.cache[p]=o;return o}a.cache={};function i(o,t,p){var z=[""].concat(a(window.location.hostname)),w=f(window.location.pathname),y="",r,x;for(var s=0,v=z.length;s<v;s++){r=z[s];for(var q=0,u=w.length;q<u;q++){x=w[q];y=o+"="+t+";"+(r?"domain="+r+";":"")+(x?"path="+x+";":"")+(p?"expires="+p+";":"");bbccookies.set(y,true)}}}window.bbccookies={_setEverywhere:i,cookiesEnabled:function(){var o="ckns_testcookie"+Math.floor(Math.random()*100000);this.set(o+"=1");if(this.get().indexOf(o)>-1){g(o);return true}return false},set:function(o){return document.cookie=o},get:function(){return document.cookie},_setPolicy:function(o){return h.apply(this,arguments)},readPolicy:function(o){return b.apply(this,arguments)},_deletePolicy:function(){i(e,"",m)},isAllowed:function(){return true},_isConfirmed:function(){return c()!==null},_acceptsAll:function(){var o=b();return o&&!(j(o).indexOf("0")>-1)},_getCookieName:function(){return d.apply(this,arguments)},_showPrompt:function(){var o=(!this._isConfirmed()&&window.cta_enabled&&this.cookiesEnabled()&&!window.bbccookies_disable);return(window.orb&&window.orb.fig)?o&&(window.orb.fig("no")||window.orb.fig("ck")):o}};bbccookies._getPolicy=bbccookies.readPolicy;function d(p){var o=(""+p).match(/^([^=]+)(?==)/);return(o&&o.length?o[0]:"")}function j(o){return""+(o.ads?1:0)+(o.personalisation?1:0)+(o.performance?1:0)}function h(r){if(typeof r==="undefined"){r=k}if(typeof arguments[0]==="string"){var o=arguments[0],q=arguments[1];if(o==="necessary"){q=true}r=b();r[o]=q}else{if(typeof arguments[0]==="object"){r.necessary=true}}var p=new Date();p.setYear(p.getFullYear()+1);p=p.toUTCString();bbccookies.set(e+"="+j(r)+";domain=bbc.co.uk;path=/;expires="+p+";");bbccookies.set(e+"="+j(r)+";domain=bbc.com;path=/;expires="+p+";");return r}function l(o){if(o===null){return null}var p=o.split("");return{ads:!!+p[0],personalisation:!!+p[1],performance:!!+p[2],necessary:true}}function c(){var o=new RegExp("(?:^|; ?)"+e+"=(\\d\\d\\d)($|;)"),p=document.cookie.match(o);if(!p){return null}return p[1]}function b(o){var p=l(c());if(!p){p=k}if(o){return p[o]}else{return p}}function g(o){return document.cookie=o+"=;expires="+m+";"}function n(){var o='<script type="text/javascript" src="https://web.archive.org/web/20191003051927/http://static.bbci.co.uk/frameworks/bbccookies/0.6.3/script/bbccookies.js"><\/script>';if(window.bbccookies_flag==="ON"&&!bbccookies._acceptsAll()&&!window.bbccookies_disable){document.write(o)}}n()})(); /*]]>*/</script><script type="text/javascript"> if (! window.gloader) { window.gloader = [ "glow", {map: "https://web.archive.org/web/20191003051927/http://node1.bbcimg.co.uk/glow/glow/map.1.7.7.js"}]; } </script><script type="text/javascript" src="/web/20191003051927js_/http://www.bbc.co.uk/staticarchive/3ec0ef3ecb4f8feca706e9bbc08cd12f01f5e540.js"></script><script type="text/javascript" src="/web/20191003051927js_/http://www.bbc.co.uk/staticarchive/21f604032d29edfa0a166f89bd41c95004718ed2.js"></script><script type="text/javascript"> bbcRequireMap = {"jquery-1":"/staticarchive/6cabfa9be6f12b6fec5ddf61c2dca1dde868555e", "jquery-1.4":"/staticarchive/cce0a0919c693f9473535d6941613bad16a4b40f", "jquery-1.9":"/staticarchive/14a082a42c1074b40bedae2666d3204e142899f5", "swfobject-2":"/staticarchive/b02e05aa3b12cfe8510390c7eccecd0af315b0a6", "demi-1":"/staticarchive/a916559c328a465dafcc30056734651ac8fdbb4b", "gelui-1":"/staticarchive/0159feca9179b145c659298e302b55dc76dfa15d", "cssp!gelui-1/overlay":"/staticarchive/fee6b4a3b22c51a59dd3ddebfb1b765049c683f6.css", "istats-1":"/staticarchive/898d2830287e2cc32efc671addf4c2f7894523aa", "relay-1":"/staticarchive/e575c3ca2e00301b7a9a097be7fe0094e1023d9a", "clock-1":"/staticarchive/7b8bb05c3fa19067c2c4c99144d21702cc15704f", "canvas-clock-1":"/staticarchive/703fd8b8a1b4ecf9cf624195bfb9691c648d3919", "cssp!clock-1":"/staticarchive/85ca997ae2f6bd2990765422dcc5b1c386c9d0cb.css", "jssignals-1":"/staticarchive/238f1d675d1626860f85815b7ab638cd41811a06", "jcarousel-1":"/staticarchive/3b38690b91f14468826c5f05f6e3da9beb55f4b1", "gelui-1/widget": "/staticarchive/fcf01fd866ac629bad5a92592c208c3b04184cd3", "gelui-1/carousel": "/staticarchive/562f83c33cfe04062d95de8024ba03636cd0af4c", "gelui-1/core": "/staticarchive/d69cc93987af4e17f910996164dc15516614353e", "gelui-1/overlay": "/staticarchive/84bd061f5e14f0728caa8c933fe6d758b54fec5a", "gelui-1/autosuggest": "/staticarchive/ca81d8400ee443b0c31a47f1eea1c6872091dd48"}; require({ baseUrl: 'http://'+location.host+'/', paths: bbcRequireMap, waitSeconds: 30 }); </script><script type="text/javascript" src="/web/20191003051927js_/http://www.bbc.co.uk/staticarchive/1b2549937977a29e048af5c307e7f73044570f03.js"></script><!--[if (IE 6)|(IE 7)|(IE 8)]> <style type="text/css"> html{font-size:125%} body{font-size:50%} .blq-tooltipped:hover {background-position:0 0} #blq-autosuggest ul li { zoom:normal; } .skylightTheme #blq-mast-home, .doveTheme #blq-mast-home, .tealTheme #blq-mast-home, .aquaTheme #blq-mast-home, .greenTheme #blq-mast-home, .violetTheme #blq-mast-home, .purpleTheme #blq-mast-home, .pinkTheme #blq-mast-home, .oliveTheme #blq-mast-home, .suedeTheme #blq-mast-home, .redTheme #blq-mast-home, .orangeTheme #blq-mast-home { filter: none; -ms-filter: ""; } #blq-nav-main { background-position: 96% 17px; } </style> <![endif]--><!--[if IE 7]> <link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/2.60.9/desktop/2.8/style/ie7.css" type="text/css" /> <style type="text/css"> .blq-clearfix {display: inline-block} </style> <![endif]--><!--[if IE 6]> <link rel="stylesheet" href="http://static.bbci.co.uk/frameworks/barlesque/2.60.9/desktop/2.8/style/ie6.css" type="text/css" /> <style type="text/css"> .blq-js #blq-nav-foot div {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.bbci.co.uk/frameworks/barlesque/2.60.9/desktop/2.8/img/panel.png', sizingMethod='image');margin-top:-139px} #blq-container {height: 15%} #blq-mast-home span.blq-home { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod='crop', src='/staticarchive/2e00d1d53e9c3bd91993196aa19a1d88589969f0.png');} #blq-mast #blq-search-btn { background: none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.bbci.co.uk/frameworks/barlesque/2.60.9/desktop/2.8/img/blq-search_grey_alpha.png', sizingMethod='image'); } </style> <script type="text/javascript"> try { document.execCommand("BackgroundImageCache",false,true); } catch(e) {} </script> <![endif]--><script type="text/javascript"> blq.assetPath="https://web.archive.org/web/20191003051927/http://static.bbci.co.uk/frameworks/barlesque/2.60.9/desktop/2.8/"; blqOnDomReady(function() { blq.suggest_short = false; blq.addAutoSuggest(); }); blq.setEnvironment('live'); if (! /bbc\.co\.uk$/i.test(window.location.hostname) ) { document.documentElement.className += ' blq-not-bbc-co-uk'; } </script><script type="text/javascript"> /*<![CDATA[*/ function oqsSurveyManager(w, flag) { var defaultThreshold = 0.7, usePulseThreshold = (flag === 'OFF')? 1 : defaultThreshold, activeThreshold; w.oqs = w.oqs || {}; if ( w.document.cookie.match(/(?:^|; *)ckns_oqs_usePulseThreshold=([\d.]+)/) ) { activeThreshold = RegExp.$1; } else if (typeof w.oqs_usePulseThreshold !== 'undefined') { activeThreshold = w.oqs_usePulseThreshold; } else { activeThreshold = usePulseThreshold; } w.oqs.usePulse = (w.Math.random() < activeThreshold); if (!w.oqs.usePulse) { w.document.write('<script type="text/javascript" src="https://web.archive.org/web/20191003051927/http://static.bbci.co.uk/frameworks/barlesque/2.60.9/desktop/2.8/script/vendor/edr.js"><'+'/script>'); } } oqsSurveyManager(window, 'ON'); /*]]>*/ </script><!-- ISTATS --><script type="text/javascript"> /* <![CDATA[ */ define('id-statusbar-config', { 'translation_signedout': "Sign in", 'translation_signedin': "Your account", 'use_overlay' : false, 'signin_url' : "https://web.archive.org/web/20191003051927/https://ssl.bbc.co.uk/id/signin", 'locale' : "en-GB", 'policyname' : "", 'ptrt' : "https://web.archive.org/web/20191003051927/http://www.bbc.co.uk/" }); /* ]]> */ </script><script type="text/javascript"> (function () { if (! window.require) { throw new Error('idcta: could not find require'); } var map = {}; map['idapp-1'] = 'https://web.archive.org/web/20191003051927/http://static.bbci.co.uk/idapp/0.63.5/modules/idapp/idapp-1'; map['idcta/idcta-1'] = 'https://web.archive.org/web/20191003051927/http://static.bbci.co.uk/id/0.23.4/modules/idcta/idcta-1'; require({paths: map}); define('id-config', {"idapp":{"version":"0.63.5","hostname":"ssl.bbc.co.uk","insecurehostname":"www.bbc.co.uk","tld":"bbc.co.uk"},"idtranslations":{"version":"0.27.6"},"identity":{"baseUrl":"https:\/\/web.archive.org\/web\/20191003051927\/https:\/\/talkback.live.bbc.co.uk\/identity"},"pathway":{"name":null,"staticAssetUrl":"https:\/\/web.archive.org\/web\/20191003051927\/http:\/\/static.bbci.co.uk\/idapp\/0.63.5\/modules\/idapp\/idapp-1\/View.css"}}); })(); </script><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/5de299e7894c328ef36c25f8374ca906844e29e9.css" rel="stylesheet" type="text/css"><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/d66f72c34592c8910ede99e42064c3cca80fbc1f.css" rel="alternate stylesheet" type="text/css" title="theme_blue"><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/56a3aa4be03133df48be006f8d71a13fb0cfa543.css" rel="alternate stylesheet" type="text/css" title="theme_hivis"><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/2c7639869a8c7b35a6c1b4c67d78a3010aa40a3f.css" rel="alternate stylesheet" type="text/css" title="theme_yellow"><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/9fb7f42e8e6bf6e5d744ae0b5ae80b16f5009b6a.css" rel="stylesheet" type="text/css"><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/703cb0aabe06f394a530ef2ff31087f11ceb52b5.css" rel="stylesheet" type="text/css" media="print"><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/f4e39a99cc932976160e266245e8016da5eb1839.css" rel="stylesheet" type="text/css" media="print"><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/91e8a05f8bde6a6535e3399a8a5c1b8668e1ad7e.css" rel="stylesheet" type="text/css"><link href="/web/20191003051927cs_/http://www.bbc.co.uk/staticarchive/24a9d8b2e7132a13ce166d406159edc2b933ffdd.css" rel="stylesheet" type="text/css"><script type="text/javascript" src="/web/20191003051927js_/http://www.bbc.co.uk/staticarchive/a62d24294062812da8e65026b000b4c56dded4cd.js"></script><!-- <script type="text/javascript" src="/accessibility/js/access_widget.js"></script> <script type="text/javascript" src="/accessibility/js/mwmw_main.js"></script> --><script type="text/javascript" src="/web/20191003051927js_/http://www.bbc.co.uk/staticarchive/cf36297804ca93709e18a7f9de289610bc97f9c5.js"></script><script type="text/javascript" src="/web/20191003051927js_/http://www.bbc.co.uk/staticarchive/243c49ff19d6f46d7fb004d73376197b8ee8e423.js"></script><script type="text/javascript" src="/web/20191003051927js_/http://www.bbc.co.uk/staticarchive/a388e83a62286e661890c2da1f02b8fd4086a088.js"></script></head><body> <script type="text/javascript">/*<![CDATA[*/ bbcFlagpoles_istats = 'ON'; istatsTrackingUrl = '//web.archive.org/web/20191003051927/http://sa.bbc.co.uk/bbc/bbc/s?name=SET-COUNTER&app_type=web&ml_name=SSI&ml_version=0.18.5&language=en-GB'; /*]]>*/</script><script type="text/javascript" src="https://web.archive.org/web/20191003051927js_/http://static.bbci.co.uk/archive_stats/modules/stats-1.0.0.js"></script> <div id="blq-container" class="blq-lang-en-GB blq-gvl-2-8"> <div id="blq-pre-mast" lang="en-GB"> <!-- Pre mast --> </div> <script type="text/html" id="blq-bbccookies-tmpl"><![CDATA[ <div id="bbccookies-prompt" class="bbccookies-d"> <h2> Cookies on the BBC website </h2> <p> We use cookies to ensure that we give you the best experience on our website.<span class="bbccookies-international-message"> We also use cookies to ensure we show you advertising that is relevant to you.</span> If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the BBC website. However, if you would like to, you can <a href="/privacy/cookies/managing/cookie-settings.html">change your cookie settings</a> at any time. </p> <ul> <li id="bbccookies-continue"> <button type="button" id="bbccookies-continue-button">Continue</button> </li> <li id="bbccookies-more"><a href="/privacy/cookies/bbc">Find out more</a></li></ul> </div> ]]></script><script type="text/javascript">/*<![CDATA[*/ (function(){if(bbccookies._showPrompt()){var i=document,b=i.getElementById("blq-pre-mast"),f=i.getElementById("blq-global"),h=i.getElementById("blq-container"),c=i.getElementById("blq-bbccookies-tmpl"),a,g,e;if(b&&i.createElement){a=i.createElement("div");a.id="bbccookies";e=c.innerHTML;e=e.replace("<"+"![CDATA[","").replace("]]"+">","");a.innerHTML=e;if(f){f.insertBefore(a,b)}else{h.insertBefore(a,b)}g=i.getElementById("bbccookies-continue-button");g.onclick=function(){a.parentNode.removeChild(a);return false};bbccookies._setPolicy()}}})(); /*]]>*/</script><span id="blq-mast-background"></span> <div id="blq-container-inner" lang="en-GB"> <div id="blq-acc" class="blq-rst"> <p id="blq-mast-home" class="blq-no-images"><a href="/web/20191003051927/http://www.bbc.co.uk/" hreflang="en-GB"> <span id="blq-blocks-wrapper"> <span class="blq-home">British Broadcasting Corporation</span><img src="/web/20191003051927im_/http://www.bbc.co.uk/staticarchive/2e00d1d53e9c3bd91993196aa19a1d88589969f0.png" alt="BBC" id="blq-blocks" width="84" height="24"><span class="blq-span">Home</span> </span> </a></p> <p class="blq-hide"><strong><a id="page-top">Accessibility links</a></strong></p> <ul id="blq-acc-links"><li><a href="#blq-content">Skip to content</a></li> <li><a href="#blq-local-nav">Skip to local navigation</a></li> <li><a href="#blq-nav-main">Skip to bbc.co.uk navigation</a></li> <li><a href="#blq-search">Skip to bbc.co.uk search</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li> </ul></div> <div id="blq-main" class="blq-clearfix"> <div id="archived-mothball-message" style=" background:url(/web/20191003051927im_/http://www.bbc.co.uk/globalresources/mothball-images/bg.jpg) 0 0 repeat-x #fbfbfb; "> <a href="/web/20191003051927/http://www.bbc.co.uk/globalresources/mothballing" style=" "> This page has been archived and is no longer updated. <span style=" display:block; font-size:0.5em; padding:10px 0 0 70px; font-weight:bold; "> <span style=" color:#1A75BB; margin-left:100px; ">Find out more about page archiving.</span> </span> </a> </div><!--<a href="/accessibility/" id="back"><span class="blq-hide">Go back to the original My web my way site</span></a>--> <div id="top_banner"> <div id="banner_container" class="blq-clearfix"> <div id="logo"><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/" id="header"><span class="blq-hide">My Web My Way - Making the web easier to use</span></a></div> </div> <div id="blq-local-nav"> <h2 class="blq-hide">Local Navigation</h2> <ul class="blq-clearfix"><li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/" class="nav_short">My web home</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/guides/" class="nav_short">How to guides</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/" class="nav_long">Disability on BBC Online</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/" class="nav_short">Best practice</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/faq.shtml" class="nav_short current_tab">FAQ / Contact</a></li> </ul></div> </div> <div id="breadcrumb"> <div id="breadcrumb_trail"><span id="breadcrumb_title">You are on:</span> <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/">My web my way home</a> &gt; Frequently asked questions (FAQ)</div> <div id="sitemap_button"><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/sitemap.shtml">View sitemap</a></div> </div> <!-- NOTE #blq-content MUST be used on every page to contain the main page content as it is linked to by Barlesque's "Skip to content" link --> <div id="blq-content" class="blq-clearfix"> <div id="main_content"> <!--<div class="headline_container header_long blq-clearfix"><h1>Frequently asked questions (FAQ)</h1></div>--> <div class="headline_container header_short_introduction blq-clearfix"> <div class=""><h2>Frequently asked questions (FAQ)</h2></div> </div> <div class="content_wrapper"> <div class="content_container bg_gradient"> <p>Here you'll find answers to the most common questions that we're currently being asked about My web my way and accessibility issues at the BBC. If you can't find the answer you're looking for below, you can <a href="#contactpage">contact us</a> with your questions or comments by email. Wherever possible, we'll try to give you a personal response, but due to the huge number of messages we receive we cannot guarantee a personal reply.</p> <p>We can only respond to questions concerning the My web my way site and related accessibility issues (<a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/what_is.shtml">What is accessibility?</a>). For all other enquiries, including accessing BBC programmes and services, see the appropriate FAQ below, or visit one of these BBC-wide resources: <a href="/web/20191003051927/http://www.bbc.co.uk/help/">BBC Help</a> | <a href="https://web.archive.org/web/20191003051927/http://faq.external.bbc.co.uk/" title="BBC Frequently asked questions">BBC FAQ</a> | <a href="/web/20191003051927/http://www.bbc.co.uk/feedback/">Contact the BBC</a>.</p> <p>If you would like to make a complaint, please visit the <a href="/web/20191003051927/http://www.bbc.co.uk/complaints/">BBC Complaints</a> website.</p> <p>Please scroll down through the questions or select a category:</p> <ul class="best_practice_container blq-clearfix"><li><a href="#access">Access services</a></li> <li><a href="#website">Website issues</a></li> <li><a href="#guides">How to guides</a></li> <li><a href="#iplayer">Online video</a></li> <li><a href="#reception">Reception problems</a></li> <li><a href="#other">Other questions &amp; contact</a></li> </ul><br><br><div class="inner_content_container"> <div class="inner_content_headline_container blq-clearfix"> <a name="access"></a><h2>Access services</h2> </div> <div class="inner_content"> <div class="generic_container"> <h3>How do I find audio-described and signed programmes on BBC iPlayer?</h3> <p>You can find out more about what audio-described and signed content is available by looking at our pages covering access services on BBC Online: <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/audio_described.shtml">Audio described programmes</a> and <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/bsl_signed.shtml">Get BSL programmes online</a>.</p> </div> <div class="generic_container"> <h3>Where can I get a transcript of a BBC programme?</h3> <p>Transcripts are only available for a very few BBC programmes. You can find more information on our page about <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/transcripts.shtml">Programme transcripts and synopses</a>.</p> </div> <div class="generic_container"> <h3>How can I get subtitles when watching videos online?</h3> <p>For instructions, see our How to guide for <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/guides/subtitles/index.shtml">Turning on subtitles on BBC iPlayer</a>. For further information, see our page on <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/subtitles.shtml">BBC access services: Get subtitled programmes</a>.</p> </div> <div class="generic_container"> <h3>I'm blind - how can I find out what's on TV and radio?</h3> <p>All web pages on the BBC are compliant with accessibility standards to allow them to be read using a screen reader, including <a href="/web/20191003051927/http://www.bbc.co.uk/tv/">TV schedules</a> and <a href="/web/20191003051927/http://www.bbc.co.uk/radio/">Radio schedules</a>. In addition, you can contact the Radio 4 In Touch listing service at the Radio 4 Action Line on 0800 044 044. The textphone number 08000 15 33 50.</p> </div> <div class="back_to_top"><a href="#page-top">Back to top</a></div> </div> </div> <div class="inner_content_container"> <div class="inner_content_headline_container blq-clearfix"> <a name="website"></a><h2>Website issues</h2> </div> <div class="inner_content"> <div class="generic_container"> <h3>I'm having problems accessing the BBC website using assistive technologies. Can you help?</h3> <p>The BBC is committed to making its broadcast and online services as accessible as possible to people with visual, hearing, cognitive or motor impairments. If you are experiencing accessibility difficulties with any BBC online content; for example via a screenreader, magnifying software or a tab-only device, please <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/contact.shtml">contact the Accessibility Team</a>.</p> </div> <div class="generic_container"> <h3>How does my computer remember which setup or browser I've chosen?</h3> <p>The My web my way site uses session cookies, which are stored temporarily on your computer. When you are first asked to choose which setup you want to view, your browser is told to remember that, so you don't need to keep choosing which setup you'd like to see every time you visit another How to guide page. As soon as you close your web browser, that information is discarded. For more about the use of cookies on the BBC website, see the <a href="/web/20191003051927/http://www.bbc.co.uk/privacy/bbc-cookies-policy.shtml">Privacy and Cookies</a> pages.</p> </div> <div class="generic_container"> <h3>How do I report a website technical fault?</h3> <p>If you've discovered a problem or error - for instance a spelling error, broken link or web access issue - on any of the pages on the My web my way website, please <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/contact.shtml">contact the Accessibility Team</a>. For problems on any other part of the BBC website, please see the BBC Help page on <a href="/web/20191003051927/http://www.bbc.co.uk/help/about/technical_fault.shtml" title="BBC Help: Technical faults">Technical faults</a>.</p> </div> <div class="generic_container"> <h3>How can I make the BBC website more accessible for me?</h3> <p>You can change the text size and choose from one of three alternate colour themes on My web my way by clicking on the icons at the top right of this page. For greater control, MyDisplay allows you to change the way BBC Online looks, and store your theme on your computer or in your BBC iD. For more information, please see the <a href="/web/20191003051927/http://www.bbc.co.uk/mydisplay/">MyDisplay website</a>. For further information about this trial service, see the Ouch! blog post '<a href="/web/20191003051927/http://www.bbc.co.uk/blogs/ouch/2011/06/get_bbccouk_personalised_to_yo.html">Get bbc.co.uk personalised to your display preferences - an update on MyDisplay</a>'.</p> </div> <div class="generic_container"> <h3>How can I make my own website more accessible?</h3> <p>The British Standards Institution (BSI) has produced a detailed guide to making websites and other web-based applications more accessible: <a href="https://web.archive.org/web/20191003051927/http://shop.bsigroup.com/en/ProductDetail/?pid=000000000030180388">BS 8878 Web accessibility. Code of practice</a>. Also useful is W3C's <a href="https://web.archive.org/web/20191003051927/http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>, which develops guidelines and provides resources to make the web more accessible. You might also be interested in the BBC's own practices for <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/standards.shtml">Web Accessibility Standards and Guidelines</a>. Finally, for particular operating systems or to address specific disabilities, you may find some helpful resources in our list of <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/useful_links.shtml">Useful web links</a>.</p> </div> <div class="back_to_top"><a href="#page-top">Back to top</a></div> </div> </div> <div class="inner_content_container"> <div class="inner_content_headline_container blq-clearfix"> <a name="guides"></a><h2>How to guides</h2> </div> <div class="inner_content"> <div class="generic_container"> <h3>Who narrates the video How to guides?</h3> <p>Geoff Adams-Spink - the former BBC Age and Disability Correspondent. He provides an introduction to the series on the main <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/guides/">How to guides index page</a>. He also interviews the participants in our series of <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/case_studies/">Case studies</a> videos.</p> </div> <div class="generic_container"> <h3>Why aren't there How to guides for my web browser or computer setup?</h3> <p>We aim to provide guides to the most popular web browsers and operating systems (computer setups), however we are unable to cover everything, especially when computer programmes are being constantly updated. If you think we have missed out something, please <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/contact.shtml">contact the Accessibility Team</a>.</p> </div> <div class="generic_container"> <h3>I tried to follow the instructions in a How to guide, but it didn't work. Can you help?</h3> <p>Unfortunately, we are unable to help with individual requests such as this. If you are on a network computer (at work, for instance), it could be because your computer settings cannot be changed due to local IT policies - contact your local IT support for further help.</p> <p>If that does not help, it may be that you are using a different version of the software (a home rather than office version, for example), or an older or more recent release. Although we will not be able to help you to resolve the problem, please <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/contact.shtml">contact the Accessibility Team</a> so that we can investigate whether a newer version has been released and we need to update the How to guide.</p> </div> <div class="generic_container"> <h3>Why are there no subtitles on the How to guide videos?</h3> <p>There are a few reasons for this. The first is that because there is written information shown on the computer screen that needs to be followed, it may be difficult to read that at the same time as reading the subtitles. Another reason is that all of the information is contained in the written guide on the page, which effectively acts as a transcript. (It is not identical, as some of the text has been simplified for the video voiceover).</p> <p>Of course, subtitles are available on the other videos on the My web my way website. Once the video has started playing, the 'S' button will appear on the right-hand side of the bottom bar. Simply press the 'S' button to turn subtitles on and off.</p> </div> <div class="generic_container"> <h3>Why do you mention some assistive technology and software products but not others?</h3> <p>In overviews of various types of assistive technologies or software, we have mainly mentioned particular products for illustrative purposes. Generally, this reflects the main products that were available at the time the guide was written, but as the technology is constantly changing it may not include newer or updated products and may still include products that have been discontinued or renamed. Please <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/contact.shtml">contact the Accessibility Team</a> if you feel the range of products we discuss for a particular assistive technology needs reviewing.</p> </div> <div class="back_to_top"><a href="#page-top">Back to top</a></div> </div> </div> <div class="inner_content_container"> <div class="inner_content_headline_container blq-clearfix"> <a name="iplayer"></a><h2>Online video</h2> </div> <div class="inner_content"> <div class="generic_container"> <h3>Can I make the videos bigger?</h3> <p>Yes, by clicking the 'Full screen' button (a small white square on top of a larger darker square) on the right-hand side of the bottom bar, once the video has started playing. To return to normal size, move the mouse so that the bottom bar becomes visible and click on the 'Full screen' button, or simply press the <strong>Esc</strong> key at any time.</p> </div> <div class="generic_container"> <h3>Why are the videos not playing properly for me?</h3> <p>The videos on the My web my way website use the BBC Embedded Media Player (EMP). For more information about how this works, and how to troubleshoot any problems, see the BBC News page about the player: <a href="/web/20191003051927/http://www.bbc.co.uk/news/1/hi/help/7277283.stm">Your guide to the BBC Embedded Media Player</a>.</p> <p>Note that due to the nature of screen recordings, to ensure a readable image the How to guide videos require more bandwidth than a standard video. We've tried to find the ideal balance between image quality and connection speed, however users with slower connections may be unable to play the videos.</p> </div> <div class="generic_container"> <h3>Where can I get Flash Player?</h3> <p>You can find a guide to installing Flash Player, which is necessary to play the videos on My web my way, from this Webwise guide: <a href="/web/20191003051927/http://www.bbc.co.uk/webwise/guides/plugin/flash">How do I install the Adobe Flash Player plug-in?</a>.</p> </div> <div class="generic_container"> <h3>How can I find out about making BBC iPlayer more accessible?</h3> <p>Please see the FAQs listed under <a href="#access">Access services</a>, above. You can find further information on the iPlayer help page on <a href="https://web.archive.org/web/20191003051927/http://iplayerhelp.external.bbc.co.uk/help/access_iplayer/" title="BBC iPlayer Frequent questions: Accessibility">Accessibility</a>.</p> </div> <div class="generic_container"> <h3>Why isn't BBC iPlayer working on my computer?</h3> <p>There's a wealth of information available on the BBC iPlayer help site. The best place to begin is on their <a href="https://web.archive.org/web/20191003051927/http://iplayerhelp.external.bbc.co.uk/help/" title="BBC iPlayer Frequent questions page">Frequent questions page</a>, although you may also find an answer to your question on the <a href="/web/20191003051927/http://www.bbc.co.uk/dna/mbiplayer/">iPlayer Message Board</a>.</p> </div> <div class="generic_container"> <h3>Why can't I watch BBC iPlayer from outside the UK?</h3> <p>For information about what content is available internationally, please visit the iPlayer help page for <a href="https://web.archive.org/web/20191003051927/http://iplayerhelp.external.bbc.co.uk/help/outside_the_uk/" title="BBC iPlayer: Outside the UK">Outside the UK</a>.</p> </div> <div class="back_to_top"><a href="#page-top">Back to top</a></div> </div> </div> <div class="inner_content_container"> <div class="inner_content_headline_container blq-clearfix"> <a name="reception"></a><h2>Reception problems</h2> </div> <div class="inner_content"> <div class="generic_container"> <h3>Why can't I receive a particular BBC channel?</h3> <p>If you are having problems receiving BBC programmes through your aerial, cable or satellite, the best place to find answers is on the <a href="/web/20191003051927/http://www.bbc.co.uk/reception/index.shtml">Help receiving TV and Radio</a> pages.</p> </div> <div class="back_to_top"><a href="#page-top">Back to top</a></div> </div> </div> <div class="inner_content_container"> <div class="inner_content_headline_container blq-clearfix"> <a name="other"></a><h2>Other questions &amp; contact</h2> </div> <div class="inner_content"> <div class="generic_container"> <h3>Is there anywhere I can find out more about disability issues?</h3> <p>There certainly is. The <a href="/web/20191003051927/http://www.bbc.co.uk/blogs/ouch/">Ouch! blog</a> and the <a href="/web/20191003051927/http://www.bbc.co.uk/podcasts/series/ouch">Ouch! Disability Talk Show</a>, which is a fortnightly podcast, both cover topics relating to disability. You may also find some helpful resources in our list of <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/useful_links.shtml">Useful web links</a>.</p> </div> <div class="generic_container"> <h3>Can you help me find information about a news item, a TV programme, a radio presenter or getting BBC on my mobile?</h3> <p>Unfortunately, we are only able to respond to queries about the My web my way website and related accessibility issues. The <a href="/web/20191003051927/http://www.bbc.co.uk/help/">BBC Help</a> site has links to the relevant areas of the BBC website where you can find out more, as well as search for answers to the most frequently asked questions about the BBC and its services.</p> </div> <div class="generic_container"> <h3>How can I make a complaint?</h3> <p>If you want to make a complaint about any of the BBC's programmes or services, please visit the <a href="/web/20191003051927/http://www.bbc.co.uk/complaints/">BBC Complaints</a> website.</p> </div> <div class="generic_container"> <a name="contactpage"></a><h3>None of the above answers my question. How can I contact the Accessibility Team?</h3> <p>If you have a question relating to accessibility in general or the My web my way site in particular - and it has not been answered above - please visit our <a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/contact.shtml">Contact us</a> page for information about emailing the Accessibility Team.</p> </div> <div class="back_to_top"><a href="#page-top">Back to top</a></div> </div> </div> </div> </div> </div> <div id="side_content"> <div class="side_panel"> <div class="side_header"><h2>What is My web my way?</h2></div> <div class="side_content"> <p>This site provides accessibility help, enabling computer users to make the most of the internet whatever their ability or disability.</p> <div class="side_foot_note"> <ul><li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/about.shtml">Read more about My web my way</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/what_is.shtml">What is accessibility?</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/policy.shtml">BBC accessibility policy</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/best_practice/standards.shtml">BBC accessibility standards and guidelines</a></li> </ul></div> </div> </div> <div class="side_panel"> <div class="side_header"><h2>BBC Online access services</h2></div> <div class="side_content"> <ul><li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/audio_described.shtml">Audio described content on BBC iPlayer</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/bsl_signed.shtml">Signed programmes</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/subtitles.shtml">Subtitled programmes</a></li> </ul></div> </div> <div class="side_panel"> <div class="side_header"><h2>BBC accessibility news</h2></div> <div class="side_content"> <ul><li> <a href="/web/20191003051927/http://www.bbc.co.uk/blogs/bbcinternet/2013/01/news_connected_studio.html">News Connected Studio</a> </li> <li> <a href="/web/20191003051927/http://www.bbc.co.uk/blogs/bbcinternet/2012/02/accessibility_betsie_text.html">Supporting Accessibility: Betsie, Text Only, and the Semantic Web</a> </li> <li> <a href="/web/20191003051927/http://www.bbc.co.uk/blogs/bbcinternet/2012/01/bbc_homepage_localisation_acce.html">BBC Homepage: Localisation &amp; Accessibility Updates</a> </li> </ul><div class="side_foot_note"> <ul><li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/news_updates.shtml">Read more articles on the latest developments in accessibility from the BBC</a></li> </ul></div> </div> </div> <div class="side_panel"> <div class="side_header"><h2>BBC web links</h2></div> <div class="side_content"> <p>See our page of links to sections of BBC Online for disabled audiences:</p> <ul><li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/on_the_bbc/index.shtml#bbc_online">Disability on BBC Online</a></li> </ul></div> </div> </div> </div> </div> <div id="blq-mast" class="blq-rst blq-default-domestic blq-new-nav" lang="en-GB"> <div id="blq-sign-in"> <div id="id-status" class="blq-id-v4"> <div class="id-out id-gel"> <h2 class="blq-hide">BBC iD</h2> <a href="https://web.archive.org/web/20191003051927/https://ssl.bbc.co.uk/id/status" id="blq-idstatus-link"> <span class="id-icon"> <span></span> </span> <span id="blq-idstatus-text"> BBC iD </span> <span class="id-spinner"></span> <span class="blq-dropdown-arrow"> <span></span> </span> </a> </div> <div id="id-status-nav"> <div class="id-in blq-rst"> <ul><li> <a name="idDash" class="blq-nogo has-ptrt idDash" href="https://web.archive.org/web/20191003051927/https://ssl.bbc.co.uk/id/settings"> Settings </a> </li> <li> <a name="idSignout" class="blq-nogo has-ptrt idSignout" href="https://web.archive.org/web/20191003051927/https://ssl.bbc.co.uk/id/signout"> Sign out </a> </li> </ul></div> </div> </div> </div> <form method="get" id="blq-search-form" action="https://web.archive.org/web/20191003051927/http://search.bbc.co.uk/search" accept-charset="utf-8"> <p id="blq-nav-search"> <input type="hidden" name="go" value="toolbar"><input type="hidden" name="uri" value="/accessibility/faq.shtml"><label for="blq-search" class="blq-hide">Search term:</label> <input id="blq-search" type="text" name="q" value="" maxlength="128"><input id="blq-search-btn" type="submit" value="Search"></p> </form> <h2 class="blq-hide">BBC navigation</h2> <ul id="blq-nav-main" class="blq-not-uk"><li id="blq-nav-n"><a href="https://web.archive.org/web/20191003051927/http://www.bbc.co.uk/news/" hreflang="en-GB">News</a></li> <li id="blq-nav-s"><a href="https://web.archive.org/web/20191003051927/http://www.bbc.co.uk/sport/" hreflang="en-GB">Sport</a></li> <li id="blq-nav-w"><a href="https://web.archive.org/web/20191003051927/http://www.bbc.co.uk/weather/" hreflang="en-GB">Weather</a></li> <li id="blq-nav-i"> <a href="/web/20191003051927/http://www.bbc.co.uk/iplayer/" hreflang="en-GB">iPlayer</a> </li> <li id="blq-nav-t"><a href="/web/20191003051927/http://www.bbc.co.uk/tv/" hreflang="en-GB">TV</a></li> <li id="blq-nav-r"><a href="/web/20191003051927/http://www.bbc.co.uk/radio/" hreflang="en-GB">Radio</a></li> <li id="blq-nav-m"><a href="#blq-nav">More&#8230;</a></li> </ul></div> <div id="blq-nav" class="blq-blue"> <div id="blq-nav-links" class="blq-clearfix" lang="en-GB"> <div id="blq-nav-links-inner"> <ul class="blq-nav-sub blq-first"><li><a href="/web/20191003051927/http://www.bbc.co.uk/cbbc/">CBBC</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/cbeebies/">CBeebies</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/comedy/">Comedy</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/food/">Food</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/history/">History</a></li> </ul><ul class="blq-nav-sub"><li><a href="/web/20191003051927/http://www.bbc.co.uk/learning/">Learning</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/music/">Music</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/science/">Science</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/nature/">Nature</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/local/">Local</a></li> </ul><ul class="blq-nav-sub blq-last"><li><a href="/web/20191003051927/http://www.bbc.co.uk/northernireland/">Northern Ireland</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/scotland/">Scotland</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/wales/">Wales</a></li> <li id="blq-az"><a href="/web/20191003051927/http://www.bbc.co.uk/a-z/">Full A-Z<span class="blq-hide"> of BBC sites</span></a></li> </ul></div> </div> </div> <!--[if IE 6]> <div id="blq-ie6-upgrade"> <p> <span>You're using the Internet Explorer 6 browser to view the BBC website. Our site will work much better if you change to a more modern browser. It's free, quick and easy.</span> <a href="http://www.browserchoice.eu/">Find out more <span>about upgrading your browser</span> here&hellip;</a> </p> </div> <![endif]--> <div id="blq-foot" lang="en-GB" class="blq-rst blq-clearfix blq-foot-grey"> <div id="blq-footlinks"> <h2 class="blq-hide">BBC links</h2> <ul><li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="https://web.archive.org/web/20191003051927/http://m.bbc.co.uk/">Mobile site</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/terms/">Terms of Use</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/aboutthebbc/">About the BBC</a></li> </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/web/20191003051927/http://www.bbc.co.uk/privacy/">Privacy</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li> </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/web/20191003051927/http://www.bbc.co.uk/privacy/bbc-cookies-policy.shtml">Cookies</a></li> <li><a href="/web/20191003051927/http://www.bbc.co.uk/contact/">Contact the BBC</a></li> </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/web/20191003051927/http://www.bbc.co.uk/guidance/">Parental Guidance</a></li> </ul></li> </ul></div> <div id="blq-foot-blocks" class="blq-footer-image-light"><img src="/web/20191003051927im_/http://www.bbc.co.uk/staticarchive/a8e42f8fe987b7cc9bf2d43b74b2c74b2448d2e3.png" width="84" height="24" alt="BBC"></div> <p id="blq-disclaim"><span id="blq-copy">BBC &#169; 2014</span> <a href="/web/20191003051927/http://www.bbc.co.uk/help/web/links/">The BBC is not responsible for the content of external sites. Read more.</a></p> <div id="blq-obit"><p><strong>This page is best viewed in an up-to-date web browser with style sheets (CSS) enabled. While you will be able to view the content of this page in your current browser, you will not be able to get the full visual experience. Please consider upgrading your browser software or enabling style sheets (CSS) if you are able to do so.</strong></p></div> </div> </div> </div> <script type="text/javascript"> if (typeof require !== 'undefined') { require(['istats-1'], function(istats){ istats.track('external', { region: document.getElementById('blq-main') }); istats.track('download', { region: document.getElementById('blq-main') }); }); } </script></body></html><!-- FILE ARCHIVED ON 05:19:27 Oct 03, 2019 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 17:57:21 Nov 28, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.493 exclusion.robots: 0.032 exclusion.robots.policy: 0.024 esindex: 0.009 cdx.remote: 9.698 LoadShardBlock: 73.548 (3) PetaboxLoader3.datanode: 101.751 (4) load_resource: 122.068 PetaboxLoader3.resolve: 50.386 -->

Pages: 1 2 3 4 5 6 7 8 9 10