nddrylliog_pismo 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
 - data/.gitignore +29 -0
 - data/Gemfile +4 -0
 - data/LICENSE +23 -0
 - data/NOTICE +4 -0
 - data/README.markdown +131 -0
 - data/Rakefile +72 -0
 - data/bin/pismo +45 -0
 - data/lib/pismo.rb +82 -0
 - data/lib/pismo/document.rb +67 -0
 - data/lib/pismo/external_attributes.rb +14 -0
 - data/lib/pismo/internal_attributes.rb +316 -0
 - data/lib/pismo/reader.rb +19 -0
 - data/lib/pismo/reader/base.rb +259 -0
 - data/lib/pismo/reader/cluster.rb +171 -0
 - data/lib/pismo/reader/tree.rb +154 -0
 - data/lib/pismo/stopwords.txt +1002 -0
 - data/lib/pismo/version.rb +3 -0
 - data/pismo.gemspec +30 -0
 - data/test/corpus/bbcnews.html +2131 -0
 - data/test/corpus/bbcnews2.html +1575 -0
 - data/test/corpus/briancray.html +269 -0
 - data/test/corpus/cant_read.html +426 -0
 - data/test/corpus/factor.html +1362 -0
 - data/test/corpus/gmane.html +138 -0
 - data/test/corpus/huffington.html +2932 -0
 - data/test/corpus/metadata_expected.yaml +72 -0
 - data/test/corpus/metadata_expected.yaml.old +122 -0
 - data/test/corpus/queness.html +919 -0
 - data/test/corpus/reader_expected.yaml +39 -0
 - data/test/corpus/readers/cluster_expected.yaml +45 -0
 - data/test/corpus/readers/tree_expected.yaml +55 -0
 - data/test/corpus/rubyinside.html +318 -0
 - data/test/corpus/rww.html +1351 -0
 - data/test/corpus/spolsky.html +298 -0
 - data/test/corpus/techcrunch.html +1285 -0
 - data/test/corpus/tweet.html +360 -0
 - data/test/corpus/youtube.html +2348 -0
 - data/test/corpus/zefrank.html +535 -0
 - data/test/helper.rb +15 -0
 - data/test/test_corpus.rb +54 -0
 - data/test/test_pismo_document.rb +34 -0
 - metadata +156 -0
 
    
        data/pismo.gemspec
    ADDED
    
    | 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # -*- encoding: utf-8 -*-
         
     | 
| 
      
 2 
     | 
    
         
            +
            $:.push File.expand_path("../lib", __FILE__)
         
     | 
| 
      
 3 
     | 
    
         
            +
            require "pismo/version"
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Gem::Specification.new do |s|
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.name        = "nddrylliog_pismo"
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.version     = Pismo::VERSION
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.platform    = Gem::Platform::RUBY
         
     | 
| 
      
 9 
     | 
    
         
            +
              s.authors     = ["Peter Cooper"]
         
     | 
| 
      
 10 
     | 
    
         
            +
              s.email       = ["git@peterc.org"]
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.homepage    = "http://github.com/peterc/pismo"
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.description = %q{Pismo extracts and retrieves content-related metadata from HTML pages - you can use the resulting data in an organized way, such as a summary/first paragraph, body text, keywords, RSS feed URL, favicon, etc.}
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.summary     = %q{Extracts or retrieves content-related metadata from HTML pages}
         
     | 
| 
      
 14 
     | 
    
         
            +
              s.date        = %q{2010-12-19}
         
     | 
| 
      
 15 
     | 
    
         
            +
              s.default_executable = %q{pismo}
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
              s.rubyforge_project = "nddrylliog_pismo"
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              s.files         = `git ls-files`.split("\n")
         
     | 
| 
      
 20 
     | 
    
         
            +
              s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
         
     | 
| 
      
 21 
     | 
    
         
            +
              s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
         
     | 
| 
      
 22 
     | 
    
         
            +
              s.require_paths = ["lib"]
         
     | 
| 
      
 23 
     | 
    
         
            +
              
         
     | 
| 
      
 24 
     | 
    
         
            +
              s.add_development_dependency(%q<shoulda>, [">= 0"])
         
     | 
| 
      
 25 
     | 
    
         
            +
              s.add_dependency(%q<awesome_print>, [">= 0"])
         
     | 
| 
      
 26 
     | 
    
         
            +
              s.add_dependency(%q<nokogiri>, [">= 0"])
         
     | 
| 
      
 27 
     | 
    
         
            +
              s.add_dependency(%q<sanitize>, [">= 0"])
         
     | 
| 
      
 28 
     | 
    
         
            +
              s.add_dependency(%q<fast-stemmer>, [">= 0"])
         
     | 
| 
      
 29 
     | 
    
         
            +
              s.add_dependency(%q<chronic>, [">= 0"])
         
     | 
| 
      
 30 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,2131 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml" lang="en-GB">
         
     | 
| 
      
 3 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
            <title>BBC News - Gay Muslims made homeless by family violence</title>
         
     | 
| 
      
 5 
     | 
    
         
            +
            <meta name="contentFlavor" content="STORY" />
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            <meta name="keywords" content="BBC, News, BBC News, news online, world, uk, international, foreign, british, online, service" />
         
     | 
| 
      
 9 
     | 
    
         
            +
            <meta name="OriginalPublicationDate" content="2010/01/11 02:00:31" />
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                <meta name="UKFS_URL" content="/1/hi/england/8446458.stm" />
         
     | 
| 
      
 12 
     | 
    
         
            +
                <meta name="IFS_URL" content="/2/hi/uk_news/england/8446458.stm" />
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            <meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            <link href="http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/england/rss.xml" rel="alternate" type="application/rss+xml" title="" />
         
     | 
| 
      
 17 
     | 
    
         
            +
            <link href="/1/low/england/8446458.stm" rel="alternate" type="text/html" title="Low Graphics" />
         
     | 
| 
      
 18 
     | 
    
         
            +
            <meta name="Headline" content="Homeless gay Muslims flee marriages" />
         
     | 
| 
      
 19 
     | 
    
         
            +
            <meta name="Section" content="England" />
         
     | 
| 
      
 20 
     | 
    
         
            +
            <meta name="Description" content="A charity is dealing with more gay Muslims made homeless after fleeing forced marriages and so-called "honour" violence." />
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            	
         
     | 
| 
      
 38 
     | 
    
         
            +
            		
         
     | 
| 
      
 39 
     | 
    
         
            +
            	
         
     | 
| 
      
 40 
     | 
    
         
            +
            	
         
     | 
| 
      
 41 
     | 
    
         
            +
            	
         
     | 
| 
      
 42 
     | 
    
         
            +
            	
         
     | 
| 
      
 43 
     | 
    
         
            +
            	
         
     | 
| 
      
 44 
     | 
    
         
            +
            	
         
     | 
| 
      
 45 
     | 
    
         
            +
            	
         
     | 
| 
      
 46 
     | 
    
         
            +
            	
         
     | 
| 
      
 47 
     | 
    
         
            +
            		
         
     | 
| 
      
 48 
     | 
    
         
            +
            	
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            <!-- 
         
     | 
| 
      
 51 
     | 
    
         
            +
            Site_To_Serve:news
         
     | 
| 
      
 52 
     | 
    
         
            +
            Section_Path:/england 
         
     | 
| 
      
 53 
     | 
    
         
            +
            blq_web_service:on
         
     | 
| 
      
 54 
     | 
    
         
            +
            blq_webservice_release:r61
         
     | 
| 
      
 55 
     | 
    
         
            +
            blq_webservice_variant:journalism
         
     | 
| 
      
 56 
     | 
    
         
            +
            blq_cache:cached/
         
     | 
| 
      
 57 
     | 
    
         
            +
            blq_host:wwwimg.bbc.co.uk
         
     | 
| 
      
 58 
     | 
    
         
            +
            blq_low_graphics_url:text_only.stm
         
     | 
| 
      
 59 
     | 
    
         
            +
            blq_language:en-gb
         
     | 
| 
      
 60 
     | 
    
         
            +
            Section name: (none)
         
     | 
| 
      
 61 
     | 
    
         
            +
            blq_core_cache:3                                                               
         
     | 
| 
      
 62 
     | 
    
         
            +
            -->
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
            <!-- blq_web_service On -->
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
            	
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
            <!-- Barlesque r61 -->
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
            <link rel="index" href="http://www.bbc.co.uk/a-z/" title="A to Z" /><link rel="help" href="http://www.bbc.co.uk/help/" title="BBC Help" /><link rel="copyright" href="http://www.bbc.co.uk/terms/" title="Terms of Use" /><link rel="icon" href="http://www.bbc.co.uk/favicon.ico" type="image/x-icon" /><meta name="viewport" content="width = 974" /><!--[if IE]><![if gte IE 6]><![endif]--><link rel="stylesheet" href="http://www.bbc.co.uk/includes/blq/resources/gvl/r61/style/main.css" type="text/css" />    <!--[if IE]><![endif]><![endif]--><!--[if (IE 6)|(IE 7)]><style type="text/css">html{font-size:125%}body{font-size:50%}#blq-container{float:left}.blq-tooltipped:hover {background-position:0 0}/*Redraw forcer*/</style><![endif]--><!--[if IE 7]><style type="text/css">.blq-clearfix {display: inline-block}</style><![endif]--><!--[if IE 6]><link rel="stylesheet" href="http://www.bbc.co.uk/includes/blq/resources/gvl/r61/style/ie6.css" type="text/css" /><style type="text/css">.blq-js #blq-nav-links-inner{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.bbc.co.uk/includes/blq/resources/gvl/r61/img/panel.png', sizingMethod='crop')}.blq-js #blq-nav-foot div{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.bbc.co.uk/includes/blq/resources/gvl/r61/img/panel.png', sizingMethod='image');margin-top:-189px}#blq-acc {background:transparent; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.bbc.co.uk/includes/blq/resources/gvl/r61/img/mast_bg.png', sizingMethod='scale')}</style><script type="text/javascript">try {document.execCommand("BackgroundImageCache",false,true);} catch(e) {}</script><![endif]--><script type="text/javascript" src="http://node1.bbcimg.co.uk/glow/gloader.0.1.2.js">gloader.use("glow", {map: "http://node1.bbcimg.co.uk/glow/glow/map.1.7.0.js"});</script>
         
     | 
| 
      
 109 
     | 
    
         
            +
            <script type="text/javascript" src="http://www.bbc.co.uk/includes/blq/resources/gvl/r61/script/blq_core.js"></script><script type="text/javascript">blq.panelSrc="http://www.bbc.co.uk/includes/blq/resources/gvl/r61/img/panel.png";blqOnDomReady(function(){blq.addGoTrack('blq-main', {external:true});blq.tagEnglishLinks("(none)","blq-main");blq.addAutoSuggest();});</script> 
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            <!-- UKFS V4 story -->
         
     | 
| 
      
 122 
     | 
    
         
            +
            <link type="text/css" rel="stylesheet" href="/css/screen/1_0_13/nol/v4/story.css" />
         
     | 
| 
      
 123 
     | 
    
         
            +
            <style type="text/css" media="all">
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
      
 125 
     | 
    
         
            +
            @import "/css/screen/1_0_8/shared/v4/styles.css";
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
            @import "/css/screen/1_0_8/shared/emp.css";
         
     | 
| 
      
 128 
     | 
    
         
            +
            	
         
     | 
| 
      
 129 
     | 
    
         
            +
            @import "/css/screen/1_0_8/shared/v4/sitewidealert.css";
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
            	
         
     | 
| 
      
 132 
     | 
    
         
            +
             
     | 
| 
      
 133 
     | 
    
         
            +
            </style>
         
     | 
| 
      
 134 
     | 
    
         
            +
             
     | 
| 
      
 135 
     | 
    
         
            +
            <style type="text/css" media="all">
         
     | 
| 
      
 136 
     | 
    
         
            +
             
     | 
| 
      
 137 
     | 
    
         
            +
            #blq-main{font-size:1em;line-height:1.416;color:#464646}
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
            </style>
         
     | 
| 
      
 140 
     | 
    
         
            +
             
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
             
     | 
| 
      
 143 
     | 
    
         
            +
            <style type="text/css" media="all">		
         
     | 
| 
      
 144 
     | 
    
         
            +
            @import "/css/screen/1_0_13/nol/v4/styles.css";	
         
     | 
| 
      
 145 
     | 
    
         
            +
            @import "/css/screen/1_0_13/nol/v4/furniture.css";
         
     | 
| 
      
 146 
     | 
    
         
            +
            @import "/css/screen/1_0_13/nol/v4/business.css";
         
     | 
| 
      
 147 
     | 
    
         
            +
            @import "/css/screen/1_0_13/nol/v4/promo.css";
         
     | 
| 
      
 148 
     | 
    
         
            +
            </style>
         
     | 
| 
      
 149 
     | 
    
         
            +
            <script type="text/javascript">
         
     | 
| 
      
 150 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 151 
     | 
    
         
            +
            var _SERVERLOC="THDO";
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
            var _userLocation = 'DOMESTIC';
         
     | 
| 
      
 155 
     | 
    
         
            +
            -->
         
     | 
| 
      
 156 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 157 
     | 
    
         
            +
            <!--newsi library v1.28-->
         
     | 
| 
      
 158 
     | 
    
         
            +
            <script src="/js/newsi/latest/newsi.js?9" type="text/javascript"></script>
         
     | 
| 
      
 159 
     | 
    
         
            +
            <!-- SITEVERSION = 4 -->
         
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
      
 161 
     | 
    
         
            +
            <!-- GEN JS V4 -->
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
            <script type="text/javascript" src="http://newsimg.bbc.co.uk/js/app/shared/v2_6/bbc_fmtj.js"></script>
         
     | 
| 
      
 164 
     | 
    
         
            +
            <script type="text/javascript">
         
     | 
| 
      
 165 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 166 
     | 
    
         
            +
            	bbc.fmtj.page = {
         
     | 
| 
      
 167 
     | 
    
         
            +
            		editionToServe: 'domestic',
         
     | 
| 
      
 168 
     | 
    
         
            +
            		jsonUrl: '(none)',
         
     | 
| 
      
 169 
     | 
    
         
            +
            		livePage: false,
         
     | 
| 
      
 170 
     | 
    
         
            +
            		queryString: '',
         
     | 
| 
      
 171 
     | 
    
         
            +
            		referrer: '(none)',
         
     | 
| 
      
 172 
     | 
    
         
            +
            		sectionPath: '/england',
         
     | 
| 
      
 173 
     | 
    
         
            +
            		siteToServe: 'news',
         
     | 
| 
      
 174 
     | 
    
         
            +
            		siteVersion: '4',
         
     | 
| 
      
 175 
     | 
    
         
            +
            		storyId: '8446458',
         
     | 
| 
      
 176 
     | 
    
         
            +
            		uri: '/1/hi/england/8446458.stm'
         
     | 
| 
      
 177 
     | 
    
         
            +
            	}
         
     | 
| 
      
 178 
     | 
    
         
            +
            -->
         
     | 
| 
      
 179 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 180 
     | 
    
         
            +
            <script type="text/javascript" src="http://newsimg.bbc.co.uk/js/app/shared/common/v2_9/bbc_fmtj_common.js"></script>
         
     | 
| 
      
 181 
     | 
    
         
            +
            <script type="text/javascript" src="http://newsimg.bbc.co.uk/js/app/shared/config/v2_11/bbc_fmtj_config.js"></script>
         
     | 
| 
      
 182 
     | 
    
         
            +
            <script type="text/javascript" src="http://newsimg.bbc.co.uk/js/app/av/emp/config.sjson?edition=domestic&site=news&section=/england"></script>
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
            <script type="text/javascript" src="http://newsimg.bbc.co.uk/js/app/ticker/v1_2_0/ticker.js"></script>
         
     | 
| 
      
 185 
     | 
    
         
            +
             
     | 
| 
      
 186 
     | 
    
         
            +
            <script src="http://newsimg.bbc.co.uk/nol/ukfs_news/js/av.js?v2" language="JavaScript" type="text/javascript"></script> 
         
     | 
| 
      
 187 
     | 
    
         
            +
            <script src="http://newsimg.bbc.co.uk/js/app/tools/hide_and_show/hide_and_show.js" type="text/javascript"></script>
         
     | 
| 
      
 188 
     | 
    
         
            +
            <script src="http://newsimg.bbc.co.uk/js/app/bookmark/bookmark.js?v1" language="JavaScript" type="text/javascript"></script>
         
     | 
| 
      
 189 
     | 
    
         
            +
            <script src="http://newsimg.bbc.co.uk/nol/shared/js/csf_2.js" language="JavaScript" type="text/javascript"></script>
         
     | 
| 
      
 190 
     | 
    
         
            +
            <script src="http://newsimg.bbc.co.uk/js/app/rss/getrss.js" type="text/javascript"></script>
         
     | 
| 
      
 191 
     | 
    
         
            +
            <script src="http://newsimg.bbc.co.uk/js/app/radio/aod/radioplayer.js" type="text/javascript"></script>
         
     | 
| 
      
 192 
     | 
    
         
            +
            	
         
     | 
| 
      
 193 
     | 
    
         
            +
            	
         
     | 
| 
      
 194 
     | 
    
         
            +
            		
         
     | 
| 
      
 195 
     | 
    
         
            +
            <script type="text/javascript" src="http://newsimg.bbc.co.uk/js/app/site_wide_alert/site_wide_alert.js"></script>
         
     | 
| 
      
 196 
     | 
    
         
            +
            		
         
     | 
| 
      
 197 
     | 
    
         
            +
            <script src="/nol/shared/js/livestats_v1_1.js?nocache=1" language="JavaScript" type="text/javascript"></script>
         
     | 
| 
      
 198 
     | 
    
         
            +
            <script src="http://newsimg.bbc.co.uk/nol/shared/js/nol4.js?v4" language="JavaScript" type="text/javascript"></script>
         
     | 
| 
      
 199 
     | 
    
         
            +
            	
         
     | 
| 
      
 200 
     | 
    
         
            +
             
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
            <script type="text/javascript" src="http://news.bbc.co.uk/js/app/av/emp/compatibility.js"></script>
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
            	
         
     | 
| 
      
 205 
     | 
    
         
            +
            		
         
     | 
| 
      
 206 
     | 
    
         
            +
            	
         
     | 
| 
      
 207 
     | 
    
         
            +
             
     | 
| 
      
 208 
     | 
    
         
            +
             
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
             
     | 
| 
      
 212 
     | 
    
         
            +
             
     | 
| 
      
 213 
     | 
    
         
            +
             
     | 
| 
      
 214 
     | 
    
         
            +
             
     | 
| 
      
 215 
     | 
    
         
            +
             
     | 
| 
      
 216 
     | 
    
         
            +
             
     | 
| 
      
 217 
     | 
    
         
            +
             
     | 
| 
      
 218 
     | 
    
         
            +
             
     | 
| 
      
 219 
     | 
    
         
            +
             
     | 
| 
      
 220 
     | 
    
         
            +
             
     | 
| 
      
 221 
     | 
    
         
            +
             
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
             
     | 
| 
      
 224 
     | 
    
         
            +
             
     | 
| 
      
 225 
     | 
    
         
            +
             
     | 
| 
      
 226 
     | 
    
         
            +
             
     | 
| 
      
 227 
     | 
    
         
            +
             
     | 
| 
      
 228 
     | 
    
         
            +
             
     | 
| 
      
 229 
     | 
    
         
            +
             
     | 
| 
      
 230 
     | 
    
         
            +
             
     | 
| 
      
 231 
     | 
    
         
            +
             
     | 
| 
      
 232 
     | 
    
         
            +
             
     | 
| 
      
 233 
     | 
    
         
            +
             
     | 
| 
      
 234 
     | 
    
         
            +
             
     | 
| 
      
 235 
     | 
    
         
            +
             
     | 
| 
      
 236 
     | 
    
         
            +
             
     | 
| 
      
 237 
     | 
    
         
            +
             
     | 
| 
      
 238 
     | 
    
         
            +
             
     | 
| 
      
 239 
     | 
    
         
            +
             
     | 
| 
      
 240 
     | 
    
         
            +
             
     | 
| 
      
 241 
     | 
    
         
            +
             
     | 
| 
      
 242 
     | 
    
         
            +
             
     | 
| 
      
 243 
     | 
    
         
            +
             
     | 
| 
      
 244 
     | 
    
         
            +
            	
         
     | 
| 
      
 245 
     | 
    
         
            +
            		<!-- is suitable for ads adding isadvertise ... -->
         
     | 
| 
      
 246 
     | 
    
         
            +
            		
         
     | 
| 
      
 247 
     | 
    
         
            +
             
     | 
| 
      
 248 
     | 
    
         
            +
             
     | 
| 
      
 249 
     | 
    
         
            +
             
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
             
     | 
| 
      
 252 
     | 
    
         
            +
             
     | 
| 
      
 253 
     | 
    
         
            +
            	
         
     | 
| 
      
 254 
     | 
    
         
            +
            	
         
     | 
| 
      
 255 
     | 
    
         
            +
             
     | 
| 
      
 256 
     | 
    
         
            +
            	 
         
     | 
| 
      
 257 
     | 
    
         
            +
             
     | 
| 
      
 258 
     | 
    
         
            +
            	
         
     | 
| 
      
 259 
     | 
    
         
            +
             
     | 
| 
      
 260 
     | 
    
         
            +
             
     | 
| 
      
 261 
     | 
    
         
            +
            	
         
     | 
| 
      
 262 
     | 
    
         
            +
            		
         
     | 
| 
      
 263 
     | 
    
         
            +
            		
         
     | 
| 
      
 264 
     | 
    
         
            +
            	
         
     | 
| 
      
 265 
     | 
    
         
            +
             
     | 
| 
      
 266 
     | 
    
         
            +
            	
         
     | 
| 
      
 267 
     | 
    
         
            +
             
     | 
| 
      
 268 
     | 
    
         
            +
             
     | 
| 
      
 269 
     | 
    
         
            +
             
     | 
| 
      
 270 
     | 
    
         
            +
             
     | 
| 
      
 271 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 272 
     | 
    
         
            +
            <body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" id="body">
         
     | 
| 
      
 273 
     | 
    
         
            +
            <div class="centerbody">
         
     | 
| 
      
 274 
     | 
    
         
            +
             
     | 
| 
      
 275 
     | 
    
         
            +
             
     | 
| 
      
 276 
     | 
    
         
            +
             
     | 
| 
      
 277 
     | 
    
         
            +
             
     | 
| 
      
 278 
     | 
    
         
            +
             
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
             
     | 
| 
      
 281 
     | 
    
         
            +
            <!-- blq_web_service On -->
         
     | 
| 
      
 282 
     | 
    
         
            +
            	
         
     | 
| 
      
 283 
     | 
    
         
            +
            	
         
     | 
| 
      
 284 
     | 
    
         
            +
             
     | 
| 
      
 285 
     | 
    
         
            +
             
     | 
| 
      
 286 
     | 
    
         
            +
             
     | 
| 
      
 287 
     | 
    
         
            +
             
     | 
| 
      
 288 
     | 
    
         
            +
             
     | 
| 
      
 289 
     | 
    
         
            +
             
     | 
| 
      
 290 
     | 
    
         
            +
             
     | 
| 
      
 291 
     | 
    
         
            +
             
     | 
| 
      
 292 
     | 
    
         
            +
             
     | 
| 
      
 293 
     | 
    
         
            +
             
     | 
| 
      
 294 
     | 
    
         
            +
            	
         
     | 
| 
      
 295 
     | 
    
         
            +
             
     | 
| 
      
 296 
     | 
    
         
            +
             
     | 
| 
      
 297 
     | 
    
         
            +
             
     | 
| 
      
 298 
     | 
    
         
            +
             
     | 
| 
      
 299 
     | 
    
         
            +
             
     | 
| 
      
 300 
     | 
    
         
            +
             
     | 
| 
      
 301 
     | 
    
         
            +
             
     | 
| 
      
 302 
     | 
    
         
            +
            <!-- Barlesque r61 -->
         
     | 
| 
      
 303 
     | 
    
         
            +
             
     | 
| 
      
 304 
     | 
    
         
            +
             
     | 
| 
      
 305 
     | 
    
         
            +
             
     | 
| 
      
 306 
     | 
    
         
            +
             
     | 
| 
      
 307 
     | 
    
         
            +
             
     | 
| 
      
 308 
     | 
    
         
            +
            <div id="blq-container"><div id="blq-pre-mast" lang="en-GB"><!-- Pre mast --></div><div id="blq-container-inner" lang="en-gb"><div id="blq-acc" class="blq-rst"><p><a href="http://www.bbc.co.uk/" id="blq-mast-home" title="Go to the bbc.co.uk homepage"><img src="http://www.bbc.co.uk/includes/blq/resources/gvl/r61/img/header_blocks.gif" alt="BBC" id="blq-blocks" /></a></p><p class="blq-hide"><strong><a id="page-top">Accessibility links</a></strong></p><ul id="blq-acc-links"><li id="blq-acc-txt"><a href="/text_only.stm
         
     | 
| 
      
 309 
     | 
    
         
            +
            ">Low graphics</a></li><li class="blq-hide"><a href="#startcontent" accesskey="2">Skip to content</a></li><li class="blq-hide"><a href="#blq-local-nav">Skip to local navigation</a></li><li class="blq-hide"><a href="#blq-nav-links">Skip to bbc.co.uk navigation</a></li><li class="blq-hide"><a href="#blq-search">Skip to bbc.co.uk search</a></li><li id="blq-acc-help"><a href="http://www.bbc.co.uk/help/">Help</a></li><li class="blq-hide"><a href="http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li class="blq-hide"><a href="http://www.bbc.co.uk/accessibility/accesskeys/keys.shtml" accesskey="0">Access keys help</a></li></ul></div><div id="blq-main" class="blq-clearfix">
         
     | 
| 
      
 310 
     | 
    
         
            +
             
     | 
| 
      
 311 
     | 
    
         
            +
             
     | 
| 
      
 312 
     | 
    
         
            +
             
     | 
| 
      
 313 
     | 
    
         
            +
             
     | 
| 
      
 314 
     | 
    
         
            +
             
     | 
| 
      
 315 
     | 
    
         
            +
            	
         
     | 
| 
      
 316 
     | 
    
         
            +
            	
         
     | 
| 
      
 317 
     | 
    
         
            +
             
     | 
| 
      
 318 
     | 
    
         
            +
            <div class="newsbanner">
         
     | 
| 
      
 319 
     | 
    
         
            +
             
     | 
| 
      
 320 
     | 
    
         
            +
            	<div class="logo"><a href="http://news.bbc.co.uk"><span>BBC News Updated every minute of every day</span></a></div>
         
     | 
| 
      
 321 
     | 
    
         
            +
             
     | 
| 
      
 322 
     | 
    
         
            +
             
     | 
| 
      
 323 
     | 
    
         
            +
            	
         
     | 
| 
      
 324 
     | 
    
         
            +
            		
         
     | 
| 
      
 325 
     | 
    
         
            +
            <div class="o">
         
     | 
| 
      
 326 
     | 
    
         
            +
                
         
     | 
| 
      
 327 
     | 
    
         
            +
                    <table cellspacing="0" width="100%" border="0" cellpadding="0"><tr><td class="banmain" valign="middle">
         
     | 
| 
      
 328 
     | 
    
         
            +
                    
         
     | 
| 
      
 329 
     | 
    
         
            +
            	
         
     | 
| 
      
 330 
     | 
    
         
            +
                        
         
     | 
| 
      
 331 
     | 
    
         
            +
                        
         
     | 
| 
      
 332 
     | 
    
         
            +
            		
         
     | 
| 
      
 333 
     | 
    
         
            +
                        
         
     | 
| 
      
 334 
     | 
    
         
            +
                        
         
     | 
| 
      
 335 
     | 
    
         
            +
            	 
         
     | 
| 
      
 336 
     | 
    
         
            +
             
     | 
| 
      
 337 
     | 
    
         
            +
             
     | 
| 
      
 338 
     | 
    
         
            +
            	<!-- Get the minutes and seconds for weighted puffs -->
         
     | 
| 
      
 339 
     | 
    
         
            +
                	
         
     | 
| 
      
 340 
     | 
    
         
            +
                	
         
     | 
| 
      
 341 
     | 
    
         
            +
            	<!-- Get the hour and minute of the day -->
         
     | 
| 
      
 342 
     | 
    
         
            +
                	
         
     | 
| 
      
 343 
     | 
    
         
            +
                	
         
     | 
| 
      
 344 
     | 
    
         
            +
            	<!-- Get the day of week plus time-->
         
     | 
| 
      
 345 
     | 
    
         
            +
            	
         
     | 
| 
      
 346 
     | 
    
         
            +
            	
         
     | 
| 
      
 347 
     | 
    
         
            +
            	
         
     | 
| 
      
 348 
     | 
    
         
            +
            	
         
     | 
| 
      
 349 
     | 
    
         
            +
            	
         
     | 
| 
      
 350 
     | 
    
         
            +
            		
         
     | 
| 
      
 351 
     | 
    
         
            +
            		
         
     | 
| 
      
 352 
     | 
    
         
            +
            	
         
     | 
| 
      
 353 
     | 
    
         
            +
             
     | 
| 
      
 354 
     | 
    
         
            +
            			
         
     | 
| 
      
 355 
     | 
    
         
            +
             
     | 
| 
      
 356 
     | 
    
         
            +
            <div class="wideav">
         
     | 
| 
      
 357 
     | 
    
         
            +
            	
         
     | 
| 
      
 358 
     | 
    
         
            +
                            
         
     | 
| 
      
 359 
     | 
    
         
            +
                                    <a href="http://news.bbc.co.uk/1/hi/uk/7459669.stm">
         
     | 
| 
      
 360 
     | 
    
         
            +
            				
         
     | 
| 
      
 361 
     | 
    
         
            +
            				
         
     | 
| 
      
 362 
     | 
    
         
            +
            					<img src="http://newsimg.bbc.co.uk/nol/shared/img/v4/icons/video_live.gif" align="left" width="50" height="13" alt="" border="0" vspace="2" hspace="0">
         
     | 
| 
      
 363 
     | 
    
         
            +
            					BBC NEWS CHANNEL
         
     | 
| 
      
 364 
     | 
    
         
            +
            				
         
     | 
| 
      
 365 
     | 
    
         
            +
            			</a>
         
     | 
| 
      
 366 
     | 
    
         
            +
                            
         
     | 
| 
      
 367 
     | 
    
         
            +
             
     | 
| 
      
 368 
     | 
    
         
            +
                            
         
     | 
| 
      
 369 
     | 
    
         
            +
             
     | 
| 
      
 370 
     | 
    
         
            +
                            <br clear="all" />
         
     | 
| 
      
 371 
     | 
    
         
            +
            	
         
     | 
| 
      
 372 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 373 
     | 
    
         
            +
             
     | 
| 
      
 374 
     | 
    
         
            +
             
     | 
| 
      
 375 
     | 
    
         
            +
             
     | 
| 
      
 376 
     | 
    
         
            +
             
     | 
| 
      
 377 
     | 
    
         
            +
             
     | 
| 
      
 378 
     | 
    
         
            +
             
     | 
| 
      
 379 
     | 
    
         
            +
            	
         
     | 
| 
      
 380 
     | 
    
         
            +
            		
         
     | 
| 
      
 381 
     | 
    
         
            +
            	
         
     | 
| 
      
 382 
     | 
    
         
            +
             
     | 
| 
      
 383 
     | 
    
         
            +
             
     | 
| 
      
 384 
     | 
    
         
            +
             
     | 
| 
      
 385 
     | 
    
         
            +
                        
         
     | 
| 
      
 386 
     | 
    
         
            +
                            
         
     | 
| 
      
 387 
     | 
    
         
            +
                                
         
     | 
| 
      
 388 
     | 
    
         
            +
                            
         
     | 
| 
      
 389 
     | 
    
         
            +
                        
         
     | 
| 
      
 390 
     | 
    
         
            +
            	
         
     | 
| 
      
 391 
     | 
    
         
            +
            	</td></tr></table>
         
     | 
| 
      
 392 
     | 
    
         
            +
                
         
     | 
| 
      
 393 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 394 
     | 
    
         
            +
            	
         
     | 
| 
      
 395 
     | 
    
         
            +
            	<!-- start live stats logic -->
         
     | 
| 
      
 396 
     | 
    
         
            +
            		
         
     | 
| 
      
 397 
     | 
    
         
            +
            		
         
     | 
| 
      
 398 
     | 
    
         
            +
            		
         
     | 
| 
      
 399 
     | 
    
         
            +
            		
         
     | 
| 
      
 400 
     | 
    
         
            +
            		
         
     | 
| 
      
 401 
     | 
    
         
            +
            		
         
     | 
| 
      
 402 
     | 
    
         
            +
            		<img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="1" height="1" alt="" style="height:0px;" /><br />
         
     | 
| 
      
 403 
     | 
    
         
            +
            		
         
     | 
| 
      
 404 
     | 
    
         
            +
            		
         
     | 
| 
      
 405 
     | 
    
         
            +
            		<!-- end live stats logic -->
         
     | 
| 
      
 406 
     | 
    
         
            +
             
     | 
| 
      
 407 
     | 
    
         
            +
             
     | 
| 
      
 408 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 409 
     | 
    
         
            +
             
     | 
| 
      
 410 
     | 
    
         
            +
            <!-- pulse survey core code ukfs OFF -->
         
     | 
| 
      
 411 
     | 
    
         
            +
            <!-- last updated 04/12/2009 10:58 -->
         
     | 
| 
      
 412 
     | 
    
         
            +
            <!-- ON -->
         
     | 
| 
      
 413 
     | 
    
         
            +
             
     | 
| 
      
 414 
     | 
    
         
            +
             
     | 
| 
      
 415 
     | 
    
         
            +
            <!-- Only serve to UK IP, non-story pages, where host matches -->
         
     | 
| 
      
 416 
     | 
    
         
            +
             <!-- end initial checks (IP, pageType, host) -->
         
     | 
| 
      
 417 
     | 
    
         
            +
             
     | 
| 
      
 418 
     | 
    
         
            +
            <!-- end pulse survey core code -->
         
     | 
| 
      
 419 
     | 
    
         
            +
            <!-- pulse survey invite code q4 -->
         
     | 
| 
      
 420 
     | 
    
         
            +
            <!-- run survey? (none) -->
         
     | 
| 
      
 421 
     | 
    
         
            +
               <!-- end bbcpage_survey_go -->
         
     | 
| 
      
 422 
     | 
    
         
            +
             
     | 
| 
      
 423 
     | 
    
         
            +
            <!-- end pulse survey invite -->
         
     | 
| 
      
 424 
     | 
    
         
            +
             
     | 
| 
      
 425 
     | 
    
         
            +
            <!-- adhoc survey invite code -->
         
     | 
| 
      
 426 
     | 
    
         
            +
             
     | 
| 
      
 427 
     | 
    
         
            +
               <!-- end survey_adhoc_worldwide_go -->
         
     | 
| 
      
 428 
     | 
    
         
            +
             
     | 
| 
      
 429 
     | 
    
         
            +
            <!-- end adhoc survey invite -->
         
     | 
| 
      
 430 
     | 
    
         
            +
             
     | 
| 
      
 431 
     | 
    
         
            +
            	
         
     | 
| 
      
 432 
     | 
    
         
            +
             
     | 
| 
      
 433 
     | 
    
         
            +
             
     | 
| 
      
 434 
     | 
    
         
            +
             
     | 
| 
      
 435 
     | 
    
         
            +
            <div class="mainwrapper">
         
     | 
| 
      
 436 
     | 
    
         
            +
            <table cellpadding="0" cellspacing="0"  class="main">
         
     | 
| 
      
 437 
     | 
    
         
            +
                <tr>
         
     | 
| 
      
 438 
     | 
    
         
            +
                    <td  class="sidebar1">
         
     | 
| 
      
 439 
     | 
    
         
            +
             
     | 
| 
      
 440 
     | 
    
         
            +
            			
         
     | 
| 
      
 441 
     | 
    
         
            +
             
     | 
| 
      
 442 
     | 
    
         
            +
            <div class="lhs">
         
     | 
| 
      
 443 
     | 
    
         
            +
            	
         
     | 
| 
      
 444 
     | 
    
         
            +
            		
         
     | 
| 
      
 445 
     | 
    
         
            +
            	
         
     | 
| 
      
 446 
     | 
    
         
            +
            		
         
     | 
| 
      
 447 
     | 
    
         
            +
            		
         
     | 
| 
      
 448 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 449 
     | 
    
         
            +
            				<a href="/1/hi/default.stm">News Front Page</a>
         
     | 
| 
      
 450 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 451 
     | 
    
         
            +
            			
         
     | 
| 
      
 452 
     | 
    
         
            +
            		
         
     | 
| 
      
 453 
     | 
    
         
            +
            	
         
     | 
| 
      
 454 
     | 
    
         
            +
            	
         
     | 
| 
      
 455 
     | 
    
         
            +
            	
         
     | 
| 
      
 456 
     | 
    
         
            +
            	
         
     | 
| 
      
 457 
     | 
    
         
            +
            	
         
     | 
| 
      
 458 
     | 
    
         
            +
             
     | 
| 
      
 459 
     | 
    
         
            +
             
     | 
| 
      
 460 
     | 
    
         
            +
             
     | 
| 
      
 461 
     | 
    
         
            +
             
     | 
| 
      
 462 
     | 
    
         
            +
            	
         
     | 
| 
      
 463 
     | 
    
         
            +
            		
         
     | 
| 
      
 464 
     | 
    
         
            +
            		
         
     | 
| 
      
 465 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 466 
     | 
    
         
            +
            				<a href="/1/hi/world/default.stm">World</a>
         
     | 
| 
      
 467 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 468 
     | 
    
         
            +
            			
         
     | 
| 
      
 469 
     | 
    
         
            +
            		
         
     | 
| 
      
 470 
     | 
    
         
            +
            	
         
     | 
| 
      
 471 
     | 
    
         
            +
            	
         
     | 
| 
      
 472 
     | 
    
         
            +
            	
         
     | 
| 
      
 473 
     | 
    
         
            +
            	
         
     | 
| 
      
 474 
     | 
    
         
            +
            	
         
     | 
| 
      
 475 
     | 
    
         
            +
             
     | 
| 
      
 476 
     | 
    
         
            +
             
     | 
| 
      
 477 
     | 
    
         
            +
             
     | 
| 
      
 478 
     | 
    
         
            +
             
     | 
| 
      
 479 
     | 
    
         
            +
            	
         
     | 
| 
      
 480 
     | 
    
         
            +
            		
         
     | 
| 
      
 481 
     | 
    
         
            +
            		
         
     | 
| 
      
 482 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 483 
     | 
    
         
            +
            				<a href="/1/hi/uk/default.stm">UK</a>
         
     | 
| 
      
 484 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 485 
     | 
    
         
            +
            			
         
     | 
| 
      
 486 
     | 
    
         
            +
            		
         
     | 
| 
      
 487 
     | 
    
         
            +
            	
         
     | 
| 
      
 488 
     | 
    
         
            +
            	
         
     | 
| 
      
 489 
     | 
    
         
            +
            	
         
     | 
| 
      
 490 
     | 
    
         
            +
            	
         
     | 
| 
      
 491 
     | 
    
         
            +
            	
         
     | 
| 
      
 492 
     | 
    
         
            +
             
     | 
| 
      
 493 
     | 
    
         
            +
             
     | 
| 
      
 494 
     | 
    
         
            +
             
     | 
| 
      
 495 
     | 
    
         
            +
             
     | 
| 
      
 496 
     | 
    
         
            +
            	
         
     | 
| 
      
 497 
     | 
    
         
            +
            		
         
     | 
| 
      
 498 
     | 
    
         
            +
            			<div class="lhssqs">
         
     | 
| 
      
 499 
     | 
    
         
            +
            				<a href="/1/hi/england/default.stm">England</a>
         
     | 
| 
      
 500 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 501 
     | 
    
         
            +
            			
         
     | 
| 
      
 502 
     | 
    
         
            +
            			
         
     | 
| 
      
 503 
     | 
    
         
            +
             
     | 
| 
      
 504 
     | 
    
         
            +
            		
         
     | 
| 
      
 505 
     | 
    
         
            +
            		
         
     | 
| 
      
 506 
     | 
    
         
            +
            	
         
     | 
| 
      
 507 
     | 
    
         
            +
            	
         
     | 
| 
      
 508 
     | 
    
         
            +
            	
         
     | 
| 
      
 509 
     | 
    
         
            +
            	
         
     | 
| 
      
 510 
     | 
    
         
            +
            	
         
     | 
| 
      
 511 
     | 
    
         
            +
             
     | 
| 
      
 512 
     | 
    
         
            +
             
     | 
| 
      
 513 
     | 
    
         
            +
             
     | 
| 
      
 514 
     | 
    
         
            +
             
     | 
| 
      
 515 
     | 
    
         
            +
            	
         
     | 
| 
      
 516 
     | 
    
         
            +
            		
         
     | 
| 
      
 517 
     | 
    
         
            +
            		
         
     | 
| 
      
 518 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 519 
     | 
    
         
            +
            				<a href="/1/hi/northern_ireland/default.stm">Northern Ireland</a>
         
     | 
| 
      
 520 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 521 
     | 
    
         
            +
            			
         
     | 
| 
      
 522 
     | 
    
         
            +
            		
         
     | 
| 
      
 523 
     | 
    
         
            +
            	
         
     | 
| 
      
 524 
     | 
    
         
            +
            	
         
     | 
| 
      
 525 
     | 
    
         
            +
            	
         
     | 
| 
      
 526 
     | 
    
         
            +
            	
         
     | 
| 
      
 527 
     | 
    
         
            +
            	
         
     | 
| 
      
 528 
     | 
    
         
            +
             
     | 
| 
      
 529 
     | 
    
         
            +
             
     | 
| 
      
 530 
     | 
    
         
            +
             
     | 
| 
      
 531 
     | 
    
         
            +
             
     | 
| 
      
 532 
     | 
    
         
            +
            	
         
     | 
| 
      
 533 
     | 
    
         
            +
            		
         
     | 
| 
      
 534 
     | 
    
         
            +
            		
         
     | 
| 
      
 535 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 536 
     | 
    
         
            +
            				<a href="/1/hi/scotland/default.stm">Scotland</a>
         
     | 
| 
      
 537 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 538 
     | 
    
         
            +
            			
         
     | 
| 
      
 539 
     | 
    
         
            +
            		
         
     | 
| 
      
 540 
     | 
    
         
            +
            	
         
     | 
| 
      
 541 
     | 
    
         
            +
            	
         
     | 
| 
      
 542 
     | 
    
         
            +
            	
         
     | 
| 
      
 543 
     | 
    
         
            +
            	
         
     | 
| 
      
 544 
     | 
    
         
            +
            	
         
     | 
| 
      
 545 
     | 
    
         
            +
             
     | 
| 
      
 546 
     | 
    
         
            +
             
     | 
| 
      
 547 
     | 
    
         
            +
             
     | 
| 
      
 548 
     | 
    
         
            +
             
     | 
| 
      
 549 
     | 
    
         
            +
            	
         
     | 
| 
      
 550 
     | 
    
         
            +
            		
         
     | 
| 
      
 551 
     | 
    
         
            +
            		
         
     | 
| 
      
 552 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 553 
     | 
    
         
            +
            				<a href="/1/hi/wales/default.stm">Wales</a>
         
     | 
| 
      
 554 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 555 
     | 
    
         
            +
            			
         
     | 
| 
      
 556 
     | 
    
         
            +
            		
         
     | 
| 
      
 557 
     | 
    
         
            +
            	
         
     | 
| 
      
 558 
     | 
    
         
            +
            	
         
     | 
| 
      
 559 
     | 
    
         
            +
            	
         
     | 
| 
      
 560 
     | 
    
         
            +
            	
         
     | 
| 
      
 561 
     | 
    
         
            +
            	
         
     | 
| 
      
 562 
     | 
    
         
            +
             
     | 
| 
      
 563 
     | 
    
         
            +
             
     | 
| 
      
 564 
     | 
    
         
            +
             
     | 
| 
      
 565 
     | 
    
         
            +
             
     | 
| 
      
 566 
     | 
    
         
            +
            	
         
     | 
| 
      
 567 
     | 
    
         
            +
            		
         
     | 
| 
      
 568 
     | 
    
         
            +
            		
         
     | 
| 
      
 569 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 570 
     | 
    
         
            +
            				<a href="/1/hi/business/default.stm">Business</a>
         
     | 
| 
      
 571 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 572 
     | 
    
         
            +
            			
         
     | 
| 
      
 573 
     | 
    
         
            +
            		
         
     | 
| 
      
 574 
     | 
    
         
            +
            	
         
     | 
| 
      
 575 
     | 
    
         
            +
            	
         
     | 
| 
      
 576 
     | 
    
         
            +
            	
         
     | 
| 
      
 577 
     | 
    
         
            +
            	
         
     | 
| 
      
 578 
     | 
    
         
            +
            	
         
     | 
| 
      
 579 
     | 
    
         
            +
             
     | 
| 
      
 580 
     | 
    
         
            +
             
     | 
| 
      
 581 
     | 
    
         
            +
             
     | 
| 
      
 582 
     | 
    
         
            +
             
     | 
| 
      
 583 
     | 
    
         
            +
            	
         
     | 
| 
      
 584 
     | 
    
         
            +
            		
         
     | 
| 
      
 585 
     | 
    
         
            +
            		
         
     | 
| 
      
 586 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 587 
     | 
    
         
            +
            				<a href="/1/hi/uk_politics/default.stm">Politics</a>
         
     | 
| 
      
 588 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 589 
     | 
    
         
            +
            			
         
     | 
| 
      
 590 
     | 
    
         
            +
            		
         
     | 
| 
      
 591 
     | 
    
         
            +
            	
         
     | 
| 
      
 592 
     | 
    
         
            +
            	
         
     | 
| 
      
 593 
     | 
    
         
            +
            	
         
     | 
| 
      
 594 
     | 
    
         
            +
            	
         
     | 
| 
      
 595 
     | 
    
         
            +
            	
         
     | 
| 
      
 596 
     | 
    
         
            +
             
     | 
| 
      
 597 
     | 
    
         
            +
             
     | 
| 
      
 598 
     | 
    
         
            +
             
     | 
| 
      
 599 
     | 
    
         
            +
             
     | 
| 
      
 600 
     | 
    
         
            +
            	
         
     | 
| 
      
 601 
     | 
    
         
            +
            		
         
     | 
| 
      
 602 
     | 
    
         
            +
            		
         
     | 
| 
      
 603 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 604 
     | 
    
         
            +
            				<a href="/1/hi/health/default.stm">Health</a>
         
     | 
| 
      
 605 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 606 
     | 
    
         
            +
            			
         
     | 
| 
      
 607 
     | 
    
         
            +
            		
         
     | 
| 
      
 608 
     | 
    
         
            +
            	
         
     | 
| 
      
 609 
     | 
    
         
            +
            	
         
     | 
| 
      
 610 
     | 
    
         
            +
            	
         
     | 
| 
      
 611 
     | 
    
         
            +
            	
         
     | 
| 
      
 612 
     | 
    
         
            +
            	
         
     | 
| 
      
 613 
     | 
    
         
            +
             
     | 
| 
      
 614 
     | 
    
         
            +
             
     | 
| 
      
 615 
     | 
    
         
            +
             
     | 
| 
      
 616 
     | 
    
         
            +
             
     | 
| 
      
 617 
     | 
    
         
            +
            	
         
     | 
| 
      
 618 
     | 
    
         
            +
            		
         
     | 
| 
      
 619 
     | 
    
         
            +
            		
         
     | 
| 
      
 620 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 621 
     | 
    
         
            +
            				<a href="/1/hi/education/default.stm">Education</a>
         
     | 
| 
      
 622 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 623 
     | 
    
         
            +
            			
         
     | 
| 
      
 624 
     | 
    
         
            +
            		
         
     | 
| 
      
 625 
     | 
    
         
            +
            	
         
     | 
| 
      
 626 
     | 
    
         
            +
            	
         
     | 
| 
      
 627 
     | 
    
         
            +
            	
         
     | 
| 
      
 628 
     | 
    
         
            +
            	
         
     | 
| 
      
 629 
     | 
    
         
            +
            	
         
     | 
| 
      
 630 
     | 
    
         
            +
             
     | 
| 
      
 631 
     | 
    
         
            +
             
     | 
| 
      
 632 
     | 
    
         
            +
             
     | 
| 
      
 633 
     | 
    
         
            +
             
     | 
| 
      
 634 
     | 
    
         
            +
            	
         
     | 
| 
      
 635 
     | 
    
         
            +
            		
         
     | 
| 
      
 636 
     | 
    
         
            +
            		
         
     | 
| 
      
 637 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 638 
     | 
    
         
            +
            				<a href="/1/hi/sci/tech/default.stm">Science & Environment</a>
         
     | 
| 
      
 639 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 640 
     | 
    
         
            +
            			
         
     | 
| 
      
 641 
     | 
    
         
            +
            		
         
     | 
| 
      
 642 
     | 
    
         
            +
            	
         
     | 
| 
      
 643 
     | 
    
         
            +
            	
         
     | 
| 
      
 644 
     | 
    
         
            +
            	
         
     | 
| 
      
 645 
     | 
    
         
            +
            	
         
     | 
| 
      
 646 
     | 
    
         
            +
            	
         
     | 
| 
      
 647 
     | 
    
         
            +
             
     | 
| 
      
 648 
     | 
    
         
            +
             
     | 
| 
      
 649 
     | 
    
         
            +
             
     | 
| 
      
 650 
     | 
    
         
            +
             
     | 
| 
      
 651 
     | 
    
         
            +
            	
         
     | 
| 
      
 652 
     | 
    
         
            +
            		
         
     | 
| 
      
 653 
     | 
    
         
            +
            		
         
     | 
| 
      
 654 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 655 
     | 
    
         
            +
            				<a href="/1/hi/technology/default.stm">Technology</a>
         
     | 
| 
      
 656 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 657 
     | 
    
         
            +
            			
         
     | 
| 
      
 658 
     | 
    
         
            +
            		
         
     | 
| 
      
 659 
     | 
    
         
            +
            	
         
     | 
| 
      
 660 
     | 
    
         
            +
            	
         
     | 
| 
      
 661 
     | 
    
         
            +
            	
         
     | 
| 
      
 662 
     | 
    
         
            +
            	
         
     | 
| 
      
 663 
     | 
    
         
            +
            	
         
     | 
| 
      
 664 
     | 
    
         
            +
             
     | 
| 
      
 665 
     | 
    
         
            +
             
     | 
| 
      
 666 
     | 
    
         
            +
             
     | 
| 
      
 667 
     | 
    
         
            +
             
     | 
| 
      
 668 
     | 
    
         
            +
            	
         
     | 
| 
      
 669 
     | 
    
         
            +
            		
         
     | 
| 
      
 670 
     | 
    
         
            +
            		
         
     | 
| 
      
 671 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 672 
     | 
    
         
            +
            				<a href="/1/hi/entertainment/default.stm">Entertainment</a>
         
     | 
| 
      
 673 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 674 
     | 
    
         
            +
            			
         
     | 
| 
      
 675 
     | 
    
         
            +
            		
         
     | 
| 
      
 676 
     | 
    
         
            +
            	
         
     | 
| 
      
 677 
     | 
    
         
            +
            	
         
     | 
| 
      
 678 
     | 
    
         
            +
            	
         
     | 
| 
      
 679 
     | 
    
         
            +
            	
         
     | 
| 
      
 680 
     | 
    
         
            +
            	
         
     | 
| 
      
 681 
     | 
    
         
            +
             
     | 
| 
      
 682 
     | 
    
         
            +
             
     | 
| 
      
 683 
     | 
    
         
            +
             
     | 
| 
      
 684 
     | 
    
         
            +
             
     | 
| 
      
 685 
     | 
    
         
            +
            	
         
     | 
| 
      
 686 
     | 
    
         
            +
            		
         
     | 
| 
      
 687 
     | 
    
         
            +
            		
         
     | 
| 
      
 688 
     | 
    
         
            +
            			<div class="lhsb">
         
     | 
| 
      
 689 
     | 
    
         
            +
            				<a href="/1/hi/also_in_the_news/default.stm">Also in the news</a>
         
     | 
| 
      
 690 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 691 
     | 
    
         
            +
            			
         
     | 
| 
      
 692 
     | 
    
         
            +
            		
         
     | 
| 
      
 693 
     | 
    
         
            +
            	
         
     | 
| 
      
 694 
     | 
    
         
            +
            	
         
     | 
| 
      
 695 
     | 
    
         
            +
            	<div class="lhsdl">-----------------</div>
         
     | 
| 
      
 696 
     | 
    
         
            +
            	
         
     | 
| 
      
 697 
     | 
    
         
            +
            	
         
     | 
| 
      
 698 
     | 
    
         
            +
             
     | 
| 
      
 699 
     | 
    
         
            +
             
     | 
| 
      
 700 
     | 
    
         
            +
             
     | 
| 
      
 701 
     | 
    
         
            +
             
     | 
| 
      
 702 
     | 
    
         
            +
            	
         
     | 
| 
      
 703 
     | 
    
         
            +
            		
         
     | 
| 
      
 704 
     | 
    
         
            +
            		
         
     | 
| 
      
 705 
     | 
    
         
            +
            			<div class="lhsl">
         
     | 
| 
      
 706 
     | 
    
         
            +
            				<a href="/1/hi/video_and_audio/default.stm">Video and Audio</a>
         
     | 
| 
      
 707 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 708 
     | 
    
         
            +
            			
         
     | 
| 
      
 709 
     | 
    
         
            +
            		
         
     | 
| 
      
 710 
     | 
    
         
            +
            	
         
     | 
| 
      
 711 
     | 
    
         
            +
            	
         
     | 
| 
      
 712 
     | 
    
         
            +
            	<div class="lhsdl">-----------------</div>
         
     | 
| 
      
 713 
     | 
    
         
            +
            	
         
     | 
| 
      
 714 
     | 
    
         
            +
            	
         
     | 
| 
      
 715 
     | 
    
         
            +
             
     | 
| 
      
 716 
     | 
    
         
            +
             
     | 
| 
      
 717 
     | 
    
         
            +
             
     | 
| 
      
 718 
     | 
    
         
            +
             
     | 
| 
      
 719 
     | 
    
         
            +
             
     | 
| 
      
 720 
     | 
    
         
            +
             
     | 
| 
      
 721 
     | 
    
         
            +
            	
         
     | 
| 
      
 722 
     | 
    
         
            +
            		
         
     | 
| 
      
 723 
     | 
    
         
            +
            		
         
     | 
| 
      
 724 
     | 
    
         
            +
            			<div class="lhsl">
         
     | 
| 
      
 725 
     | 
    
         
            +
            				<a href="/1/hi/talking_point/default.stm">Have Your Say</a>
         
     | 
| 
      
 726 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 727 
     | 
    
         
            +
            			
         
     | 
| 
      
 728 
     | 
    
         
            +
            		
         
     | 
| 
      
 729 
     | 
    
         
            +
            	
         
     | 
| 
      
 730 
     | 
    
         
            +
            	
         
     | 
| 
      
 731 
     | 
    
         
            +
            	
         
     | 
| 
      
 732 
     | 
    
         
            +
            	
         
     | 
| 
      
 733 
     | 
    
         
            +
            	
         
     | 
| 
      
 734 
     | 
    
         
            +
             
     | 
| 
      
 735 
     | 
    
         
            +
             
     | 
| 
      
 736 
     | 
    
         
            +
             
     | 
| 
      
 737 
     | 
    
         
            +
             
     | 
| 
      
 738 
     | 
    
         
            +
            	
         
     | 
| 
      
 739 
     | 
    
         
            +
            		
         
     | 
| 
      
 740 
     | 
    
         
            +
            		
         
     | 
| 
      
 741 
     | 
    
         
            +
            			<div class="lhsl">
         
     | 
| 
      
 742 
     | 
    
         
            +
            				<a href="/1/hi/magazine/default.stm">Magazine</a>
         
     | 
| 
      
 743 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 744 
     | 
    
         
            +
            			
         
     | 
| 
      
 745 
     | 
    
         
            +
            		
         
     | 
| 
      
 746 
     | 
    
         
            +
            	
         
     | 
| 
      
 747 
     | 
    
         
            +
            	
         
     | 
| 
      
 748 
     | 
    
         
            +
            	
         
     | 
| 
      
 749 
     | 
    
         
            +
            	
         
     | 
| 
      
 750 
     | 
    
         
            +
            	
         
     | 
| 
      
 751 
     | 
    
         
            +
             
     | 
| 
      
 752 
     | 
    
         
            +
             
     | 
| 
      
 753 
     | 
    
         
            +
             
     | 
| 
      
 754 
     | 
    
         
            +
             
     | 
| 
      
 755 
     | 
    
         
            +
            	
         
     | 
| 
      
 756 
     | 
    
         
            +
            		
         
     | 
| 
      
 757 
     | 
    
         
            +
            		
         
     | 
| 
      
 758 
     | 
    
         
            +
            			<div class="lhsl">
         
     | 
| 
      
 759 
     | 
    
         
            +
            				<a href="/1/hi/in_pictures/default.stm">In Pictures</a>
         
     | 
| 
      
 760 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 761 
     | 
    
         
            +
            			
         
     | 
| 
      
 762 
     | 
    
         
            +
            		
         
     | 
| 
      
 763 
     | 
    
         
            +
            	
         
     | 
| 
      
 764 
     | 
    
         
            +
            	
         
     | 
| 
      
 765 
     | 
    
         
            +
            	
         
     | 
| 
      
 766 
     | 
    
         
            +
            	
         
     | 
| 
      
 767 
     | 
    
         
            +
            	
         
     | 
| 
      
 768 
     | 
    
         
            +
             
     | 
| 
      
 769 
     | 
    
         
            +
             
     | 
| 
      
 770 
     | 
    
         
            +
             
     | 
| 
      
 771 
     | 
    
         
            +
             
     | 
| 
      
 772 
     | 
    
         
            +
            	
         
     | 
| 
      
 773 
     | 
    
         
            +
            		
         
     | 
| 
      
 774 
     | 
    
         
            +
            		
         
     | 
| 
      
 775 
     | 
    
         
            +
            			<div class="lhsl">
         
     | 
| 
      
 776 
     | 
    
         
            +
            				<a href="/1/hi/country_profiles/default.stm">Country Profiles</a>
         
     | 
| 
      
 777 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 778 
     | 
    
         
            +
            			
         
     | 
| 
      
 779 
     | 
    
         
            +
            		
         
     | 
| 
      
 780 
     | 
    
         
            +
            	
         
     | 
| 
      
 781 
     | 
    
         
            +
            	
         
     | 
| 
      
 782 
     | 
    
         
            +
            	
         
     | 
| 
      
 783 
     | 
    
         
            +
            	
         
     | 
| 
      
 784 
     | 
    
         
            +
            	
         
     | 
| 
      
 785 
     | 
    
         
            +
             
     | 
| 
      
 786 
     | 
    
         
            +
             
     | 
| 
      
 787 
     | 
    
         
            +
             
     | 
| 
      
 788 
     | 
    
         
            +
             
     | 
| 
      
 789 
     | 
    
         
            +
            	
         
     | 
| 
      
 790 
     | 
    
         
            +
            		
         
     | 
| 
      
 791 
     | 
    
         
            +
            		
         
     | 
| 
      
 792 
     | 
    
         
            +
            			<div class="lhsl">
         
     | 
| 
      
 793 
     | 
    
         
            +
            				<a href="/1/hi/in_depth/default.stm">Special Reports</a>
         
     | 
| 
      
 794 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 795 
     | 
    
         
            +
            			
         
     | 
| 
      
 796 
     | 
    
         
            +
            		
         
     | 
| 
      
 797 
     | 
    
         
            +
            	
         
     | 
| 
      
 798 
     | 
    
         
            +
            	
         
     | 
| 
      
 799 
     | 
    
         
            +
            	
         
     | 
| 
      
 800 
     | 
    
         
            +
            	
         
     | 
| 
      
 801 
     | 
    
         
            +
            	
         
     | 
| 
      
 802 
     | 
    
         
            +
             
     | 
| 
      
 803 
     | 
    
         
            +
             
     | 
| 
      
 804 
     | 
    
         
            +
             
     | 
| 
      
 805 
     | 
    
         
            +
             
     | 
| 
      
 806 
     | 
    
         
            +
             
     | 
| 
      
 807 
     | 
    
         
            +
            	
         
     | 
| 
      
 808 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 809 
     | 
    
         
            +
             
     | 
| 
      
 810 
     | 
    
         
            +
             
     | 
| 
      
 811 
     | 
    
         
            +
             
     | 
| 
      
 812 
     | 
    
         
            +
             
     | 
| 
      
 813 
     | 
    
         
            +
            		
         
     | 
| 
      
 814 
     | 
    
         
            +
             
     | 
| 
      
 815 
     | 
    
         
            +
             
     | 
| 
      
 816 
     | 
    
         
            +
             
     | 
| 
      
 817 
     | 
    
         
            +
             
     | 
| 
      
 818 
     | 
    
         
            +
            <div class="relatedbbcsites">
         
     | 
| 
      
 819 
     | 
    
         
            +
            <h3>Related BBC sites</h3>
         
     | 
| 
      
 820 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 821 
     | 
    
         
            +
             
     | 
| 
      
 822 
     | 
    
         
            +
            	
         
     | 
| 
      
 823 
     | 
    
         
            +
            	<li><a href="http://news.bbc.co.uk/sport1/hi/default.stm" title="Home of BBC Sport on the internet">Sport</a></li>
         
     | 
| 
      
 824 
     | 
    
         
            +
            	<li><a href="http://www.bbc.co.uk/weather/" title="Weather information from around the world">Weather</a></li>
         
     | 
| 
      
 825 
     | 
    
         
            +
            	<li><a href="http://news.bbc.co.uk/democracylive/hi/" title="Democracy Live">Democracy Live</a></li>	
         
     | 
| 
      
 826 
     | 
    
         
            +
            	<li><a href="http://www.bbc.co.uk/newsbeat" title="Radio 1 Newsbeat">Radio 1 Newsbeat</a></li>
         
     | 
| 
      
 827 
     | 
    
         
            +
            	<li><a href="http://news.bbc.co.uk/cbbcnews/default.stm" title="CBBC Newsround">CBBC Newsround</a></li>
         
     | 
| 
      
 828 
     | 
    
         
            +
            	<li><a href="http://www.bbc.co.uk/onthisday" title="BBC On This Day">On This Day</a></li>
         
     | 
| 
      
 829 
     | 
    
         
            +
            	<li><a href="http://www.bbc.co.uk/blogs/theeditors/" title="Editors' Blog">Editors' Blog</a></li>	
         
     | 
| 
      
 830 
     | 
    
         
            +
            		
         
     | 
| 
      
 831 
     | 
    
         
            +
             
     | 
| 
      
 832 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 833 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 834 
     | 
    
         
            +
            	
         
     | 
| 
      
 835 
     | 
    
         
            +
            		<!-- SiteVersions -->
         
     | 
| 
      
 836 
     | 
    
         
            +
            	
         
     | 
| 
      
 837 
     | 
    
         
            +
            		
         
     | 
| 
      
 838 
     | 
    
         
            +
            <img alt="" id="livestats" src="http://stats.bbc.co.uk/o.gif?~RS~s~RS~News~RS~t~RS~HighWeb_Story~RS~i~RS~8446458~RS~p~RS~41217~RS~a~RS~Domestic~RS~u~RS~/1/hi/england/8446458.stm~RS~r~RS~(none)~RS~q~RS~~RS~z~RS~46~RS~"/></td>
         
     | 
| 
      
 839 
     | 
    
         
            +
                    
         
     | 
| 
      
 840 
     | 
    
         
            +
                    <td class="contentwrapper">
         
     | 
| 
      
 841 
     | 
    
         
            +
                    
         
     | 
| 
      
 842 
     | 
    
         
            +
            <div class="o">
         
     | 
| 
      
 843 
     | 
    
         
            +
                  
         
     | 
| 
      
 844 
     | 
    
         
            +
                
         
     | 
| 
      
 845 
     | 
    
         
            +
             
     | 
| 
      
 846 
     | 
    
         
            +
                
         
     | 
| 
      
 847 
     | 
    
         
            +
             
     | 
| 
      
 848 
     | 
    
         
            +
                
         
     | 
| 
      
 849 
     | 
    
         
            +
             
     | 
| 
      
 850 
     | 
    
         
            +
                
         
     | 
| 
      
 851 
     | 
    
         
            +
             
     | 
| 
      
 852 
     | 
    
         
            +
                
         
     | 
| 
      
 853 
     | 
    
         
            +
             
     | 
| 
      
 854 
     | 
    
         
            +
                
         
     | 
| 
      
 855 
     | 
    
         
            +
             
     | 
| 
      
 856 
     | 
    
         
            +
                
         
     | 
| 
      
 857 
     | 
    
         
            +
             
     | 
| 
      
 858 
     | 
    
         
            +
                
         
     | 
| 
      
 859 
     | 
    
         
            +
             
     | 
| 
      
 860 
     | 
    
         
            +
                
         
     | 
| 
      
 861 
     | 
    
         
            +
             
     | 
| 
      
 862 
     | 
    
         
            +
                
         
     | 
| 
      
 863 
     | 
    
         
            +
             
     | 
| 
      
 864 
     | 
    
         
            +
                
         
     | 
| 
      
 865 
     | 
    
         
            +
             
     | 
| 
      
 866 
     | 
    
         
            +
                
         
     | 
| 
      
 867 
     | 
    
         
            +
             
     | 
| 
      
 868 
     | 
    
         
            +
                
         
     | 
| 
      
 869 
     | 
    
         
            +
             
     | 
| 
      
 870 
     | 
    
         
            +
                
         
     | 
| 
      
 871 
     | 
    
         
            +
             
     | 
| 
      
 872 
     | 
    
         
            +
                
         
     | 
| 
      
 873 
     | 
    
         
            +
             
     | 
| 
      
 874 
     | 
    
         
            +
                
         
     | 
| 
      
 875 
     | 
    
         
            +
             
     | 
| 
      
 876 
     | 
    
         
            +
                
         
     | 
| 
      
 877 
     | 
    
         
            +
             
     | 
| 
      
 878 
     | 
    
         
            +
                
         
     | 
| 
      
 879 
     | 
    
         
            +
             
     | 
| 
      
 880 
     | 
    
         
            +
                
         
     | 
| 
      
 881 
     | 
    
         
            +
             
     | 
| 
      
 882 
     | 
    
         
            +
                
         
     | 
| 
      
 883 
     | 
    
         
            +
             
     | 
| 
      
 884 
     | 
    
         
            +
            </div> 
         
     | 
| 
      
 885 
     | 
    
         
            +
                        <table  class="datetools" cellpadding="0" cellspacing="0">
         
     | 
| 
      
 886 
     | 
    
         
            +
                            <tr>
         
     | 
| 
      
 887 
     | 
    
         
            +
                                <td >
         
     | 
| 
      
 888 
     | 
    
         
            +
            			
         
     | 
| 
      
 889 
     | 
    
         
            +
                                    
         
     | 
| 
      
 890 
     | 
    
         
            +
                                    
         
     | 
| 
      
 891 
     | 
    
         
            +
            <a name="startcontent"></a><div class="ds"><span class="lu">Page last updated at </span>02:00 GMT, Monday, 11 January 2010</div>
         
     | 
| 
      
 892 
     | 
    
         
            +
             
     | 
| 
      
 893 
     | 
    
         
            +
             
     | 
| 
      
 894 
     | 
    
         
            +
             
     | 
| 
      
 895 
     | 
    
         
            +
             
     | 
| 
      
 896 
     | 
    
         
            +
                                    
         
     | 
| 
      
 897 
     | 
    
         
            +
                
         
     | 
| 
      
 898 
     | 
    
         
            +
                    <div class="mvtb"><table cellspacing="0" width="416" border="0" cellpadding="0"><tr>
         
     | 
| 
      
 899 
     | 
    
         
            +
                        <td width="213"><a class="epl" onClick="popUpPage('http://newsvote.bbc.co.uk/mpapps/pagetools/email/news.bbc.co.uk/1/hi/england/8446458.stm','status=no,scrollbars=yes,resizable=yes,width=370,height=445','Mailer')" href="http://newsvote.bbc.co.uk/mpapps/pagetools/email/news.bbc.co.uk/1/hi/england/8446458.stm" target="Mailer">
         
     | 
| 
      
 900 
     | 
    
         
            +
                            <img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/email.gif" align="left" width="17" height="11" alt="" border="0" vspace="0" hspace="3">
         
     | 
| 
      
 901 
     | 
    
         
            +
                            E-mail this to a friend
         
     | 
| 
      
 902 
     | 
    
         
            +
                        </a></td>
         
     | 
| 
      
 903 
     | 
    
         
            +
                        <td width="203"><a class="epl" onClick="popUpPage('http://newsvote.bbc.co.uk/mpapps/pagetools/print/news.bbc.co.uk/1/hi/england/8446458.stm?ad=1','status=no,scrollbars=yes,toolbar=yes,resizable=yes,menubar=yes,width=600,height=445','Printer')" href="http://newsvote.bbc.co.uk/mpapps/pagetools/print/news.bbc.co.uk/1/hi/england/8446458.stm?ad=1" target="Printer">
         
     | 
| 
      
 904 
     | 
    
         
            +
            	       	<img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/print.gif " align="left" width="17" height="11" alt="" border="0" vspace="0" hspace="3">
         
     | 
| 
      
 905 
     | 
    
         
            +
            	 	Printable version
         
     | 
| 
      
 906 
     | 
    
         
            +
                        </a></td>
         
     | 
| 
      
 907 
     | 
    
         
            +
                    </tr></table></div>
         
     | 
| 
      
 908 
     | 
    
         
            +
            		    
         
     | 
| 
      
 909 
     | 
    
         
            +
                
         
     | 
| 
      
 910 
     | 
    
         
            +
                
         
     | 
| 
      
 911 
     | 
    
         
            +
             
     | 
| 
      
 912 
     | 
    
         
            +
             
     | 
| 
      
 913 
     | 
    
         
            +
             
     | 
| 
      
 914 
     | 
    
         
            +
                                    
         
     | 
| 
      
 915 
     | 
    
         
            +
                                </td>
         
     | 
| 
      
 916 
     | 
    
         
            +
                            </tr>
         
     | 
| 
      
 917 
     | 
    
         
            +
                        </table>
         
     | 
| 
      
 918 
     | 
    
         
            +
                        <table class="storycontent" cellpadding="0" cellspacing="0">
         
     | 
| 
      
 919 
     | 
    
         
            +
            		
         
     | 
| 
      
 920 
     | 
    
         
            +
                            
         
     | 
| 
      
 921 
     | 
    
         
            +
            		<tr>
         
     | 
| 
      
 922 
     | 
    
         
            +
            		<td colspan="2">
         
     | 
| 
      
 923 
     | 
    
         
            +
            			
         
     | 
| 
      
 924 
     | 
    
         
            +
            			<div class="mxb">
         
     | 
| 
      
 925 
     | 
    
         
            +
            				<h1>
         
     | 
| 
      
 926 
     | 
    
         
            +
            					Gay Muslims made homeless by family violence
         
     | 
| 
      
 927 
     | 
    
         
            +
            				</h1>
         
     | 
| 
      
 928 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 929 
     | 
    
         
            +
            		</td>
         
     | 
| 
      
 930 
     | 
    
         
            +
            		</tr>
         
     | 
| 
      
 931 
     | 
    
         
            +
                		
         
     | 
| 
      
 932 
     | 
    
         
            +
            		
         
     | 
| 
      
 933 
     | 
    
         
            +
            	
         
     | 
| 
      
 934 
     | 
    
         
            +
                            <tr>
         
     | 
| 
      
 935 
     | 
    
         
            +
                                <td class="storybody">
         
     | 
| 
      
 936 
     | 
    
         
            +
                                    <!-- S BO --><p></p>
         
     | 
| 
      
 937 
     | 
    
         
            +
            <!-- S IBYL -->
         
     | 
| 
      
 938 
     | 
    
         
            +
            <div class="mvb">
         
     | 
| 
      
 939 
     | 
    
         
            +
             
     | 
| 
      
 940 
     | 
    
         
            +
             
     | 
| 
      
 941 
     | 
    
         
            +
                <table cellspacing="0" width="466" border="0" cellpadding="0">
         
     | 
| 
      
 942 
     | 
    
         
            +
                    <tr>
         
     | 
| 
      
 943 
     | 
    
         
            +
                    <td valign="bottom">
         
     | 
| 
      
 944 
     | 
    
         
            +
                        <div class="mvb">
         
     | 
| 
      
 945 
     | 
    
         
            +
                            
         
     | 
| 
      
 946 
     | 
    
         
            +
                                
         
     | 
| 
      
 947 
     | 
    
         
            +
                                <span class="byl">
         
     | 
| 
      
 948 
     | 
    
         
            +
                                    By Poonam Taneja
         
     | 
| 
      
 949 
     | 
    
         
            +
                                </span>
         
     | 
| 
      
 950 
     | 
    
         
            +
                            
         
     | 
| 
      
 951 
     | 
    
         
            +
                            
         
     | 
| 
      
 952 
     | 
    
         
            +
                                <br />
         
     | 
| 
      
 953 
     | 
    
         
            +
                                <span class="byd">
         
     | 
| 
      
 954 
     | 
    
         
            +
                                    BBC Asian Network
         
     | 
| 
      
 955 
     | 
    
         
            +
                                </span>
         
     | 
| 
      
 956 
     | 
    
         
            +
                            
         
     | 
| 
      
 957 
     | 
    
         
            +
                        </div>
         
     | 
| 
      
 958 
     | 
    
         
            +
                    </td>
         
     | 
| 
      
 959 
     | 
    
         
            +
                    </tr>
         
     | 
| 
      
 960 
     | 
    
         
            +
                </table><img src="http://newsimg.bbc.co.uk/shared/img/999999.gif" width="466" height="1" alt="" border="0" vspace="0" hspace="0"><br />
         
     | 
| 
      
 961 
     | 
    
         
            +
             
     | 
| 
      
 962 
     | 
    
         
            +
            	
         
     | 
| 
      
 963 
     | 
    
         
            +
             
     | 
| 
      
 964 
     | 
    
         
            +
             
     | 
| 
      
 965 
     | 
    
         
            +
             
     | 
| 
      
 966 
     | 
    
         
            +
             
     | 
| 
      
 967 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 968 
     | 
    
         
            +
            <!-- E IBYL -->
         
     | 
| 
      
 969 
     | 
    
         
            +
             
     | 
| 
      
 970 
     | 
    
         
            +
             
     | 
| 
      
 971 
     | 
    
         
            +
            <p></p>
         
     | 
| 
      
 972 
     | 
    
         
            +
            <!-- S IIMA -->
         
     | 
| 
      
 973 
     | 
    
         
            +
            	
         
     | 
| 
      
 974 
     | 
    
         
            +
            		<table border="0" cellspacing="0" align="right" width="226" cellpadding="0">
         
     | 
| 
      
 975 
     | 
    
         
            +
            			<tr><td>
         
     | 
| 
      
 976 
     | 
    
         
            +
            			<div>
         
     | 
| 
      
 977 
     | 
    
         
            +
            				<img src="http://newsimg.bbc.co.uk/media/images/47058000/jpg/_47058769_syed_bbc.jpg" width="226" height="170" alt="Eastenders characters Christian and Syed" border="0" vspace="0" hspace="0">
         
     | 
| 
      
 978 
     | 
    
         
            +
            				<div class="cap">EastEnders has a storyline in which a Muslim man has a gay affair
         
     | 
| 
      
 979 
     | 
    
         
            +
             
     | 
| 
      
 980 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 981 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 982 
     | 
    
         
            +
            			</td></tr>
         
     | 
| 
      
 983 
     | 
    
         
            +
            		</table>
         
     | 
| 
      
 984 
     | 
    
         
            +
            		
         
     | 
| 
      
 985 
     | 
    
         
            +
            	
         
     | 
| 
      
 986 
     | 
    
         
            +
             
     | 
| 
      
 987 
     | 
    
         
            +
            	
         
     | 
| 
      
 988 
     | 
    
         
            +
            <!-- E IIMA -->
         
     | 
| 
      
 989 
     | 
    
         
            +
             
     | 
| 
      
 990 
     | 
    
         
            +
            <p><b>A UK charity is dealing with an increasing number of young gay Muslims becoming homeless after fleeing forced marriages and so-called honour violence.</b></p><p>During a weekly drop-in group held by the Albert Kennedy Trust in London, Suni, a 20-year-old London student, helps himself to a warm mince pie and a steaming cup of coffee. </p><p>In 2008, during a holiday to Pakistan to visit relatives, his parents suspected the truth about his sexuality. They believed marriage would "cure" him of what they considered to be a psychological disorder. </p><p><b>Name 'blackened'</b></p><p>"They told me I'm going to be forced into marriage and they're looking for a girl and I'll be married in two to three months and I won't be able to come back to London," Suni said. </p><p>When he refused, he was imprisoned in his family's ancestral home in a remote village of Pakistan and subjected to regular beatings and abuse as he had brought "shame" on the strict Muslim family. </p><p></p>
         
     | 
| 
      
 991 
     | 
    
         
            +
            	
         
     | 
| 
      
 992 
     | 
    
         
            +
             
     | 
| 
      
 993 
     | 
    
         
            +
            	
         
     | 
| 
      
 994 
     | 
    
         
            +
            		    
         
     | 
| 
      
 995 
     | 
    
         
            +
            			    <!-- S IBOX -->
         
     | 
| 
      
 996 
     | 
    
         
            +
            				<table cellspacing="0" align="right" width="231" border="0" cellpadding="0">
         
     | 
| 
      
 997 
     | 
    
         
            +
            				<tr>
         
     | 
| 
      
 998 
     | 
    
         
            +
            			            <td width="5"><img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="5" height="1" alt="" border="0" vspace="0" hspace="0"></td>
         
     | 
| 
      
 999 
     | 
    
         
            +
            			            <td class="sibtbg">
         
     | 
| 
      
 1000 
     | 
    
         
            +
            			                
         
     | 
| 
      
 1001 
     | 
    
         
            +
            					
         
     | 
| 
      
 1002 
     | 
    
         
            +
            			                
         
     | 
| 
      
 1003 
     | 
    
         
            +
            			                     
         
     | 
| 
      
 1004 
     | 
    
         
            +
            			                    <div>
         
     | 
| 
      
 1005 
     | 
    
         
            +
            	
         
     | 
| 
      
 1006 
     | 
    
         
            +
            		<div class="mva">
         
     | 
| 
      
 1007 
     | 
    
         
            +
            			<img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/start_quote_rb.gif" width="24" height="13" alt="" border="0">
         
     | 
| 
      
 1008 
     | 
    
         
            +
            			<b>I think I'd be vulnerable if people knew about me - I've heard a lot of remarks in the past about people saying that gay people should die for religious reasons</b>
         
     | 
| 
      
 1009 
     | 
    
         
            +
            		<img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/end_quote_rb.gif" align="right" width="23" height="13" alt="" border="0" vspace="0"><br clear="all"/>	</div>
         
     | 
| 
      
 1010 
     | 
    
         
            +
            	
         
     | 
| 
      
 1011 
     | 
    
         
            +
            	
         
     | 
| 
      
 1012 
     | 
    
         
            +
             
     | 
| 
      
 1013 
     | 
    
         
            +
             
     | 
| 
      
 1014 
     | 
    
         
            +
             
     | 
| 
      
 1015 
     | 
    
         
            +
             
     | 
| 
      
 1016 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1017 
     | 
    
         
            +
            			                
         
     | 
| 
      
 1018 
     | 
    
         
            +
            			                     
         
     | 
| 
      
 1019 
     | 
    
         
            +
            			                    <div class="mva">
         
     | 
| 
      
 1020 
     | 
    
         
            +
            	<div>Shelim, East London</div>
         
     | 
| 
      
 1021 
     | 
    
         
            +
             
     | 
| 
      
 1022 
     | 
    
         
            +
             
     | 
| 
      
 1023 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1024 
     | 
    
         
            +
            			                
         
     | 
| 
      
 1025 
     | 
    
         
            +
            			            </td>
         
     | 
| 
      
 1026 
     | 
    
         
            +
            			        </tr>
         
     | 
| 
      
 1027 
     | 
    
         
            +
            				</table>
         
     | 
| 
      
 1028 
     | 
    
         
            +
            				
         
     | 
| 
      
 1029 
     | 
    
         
            +
            			    <!-- E IBOX -->
         
     | 
| 
      
 1030 
     | 
    
         
            +
            			
         
     | 
| 
      
 1031 
     | 
    
         
            +
            	
         
     | 
| 
      
 1032 
     | 
    
         
            +
             
     | 
| 
      
 1033 
     | 
    
         
            +
             
     | 
| 
      
 1034 
     | 
    
         
            +
             
     | 
| 
      
 1035 
     | 
    
         
            +
            <p>"I stayed there for three months and he was always beating me. He was telling me I had blackened our family name and he was saying it's a sin. I know it was just for honour." </p><p>Suni managed to escape and return to the UK, penniless and homeless. </p><p>Relatives and friends were reluctant to help him due to fear of violent reprisals from his family. </p><p>After a night spent in a police cell, he was put in touch with the trust, which helped find him safe accommodation. </p><p><b>'Gay demons'</b></p><p>Trust worker Annie Southerst said in the past six months there has been an increase in the number of Muslims coming to them for help. </p><p>"They face threats of physical violence, actual violence and restriction of liberties," she said. </p><p>"We've had people chased out of the house with knives and we have had issues around young people who had exorcisms planned to get rid of the gay demons, I suppose. </p><p>"They come to us because they're homeless, or in danger of being homeless imminently. We sort out emergency accommodation for them. </p><p>"But the biggest loss they face is the loss of their families. </p><p>"I can't imagine what it must be like to suddenly in your late teens, early 20s suddenly not to have a family anymore." </p><p>Using laws introduced by the government in November 2008, the charity has taken out four Forced Marriage Protection orders in the past few months. </p><p></p>
         
     | 
| 
      
 1036 
     | 
    
         
            +
            	
         
     | 
| 
      
 1037 
     | 
    
         
            +
             
     | 
| 
      
 1038 
     | 
    
         
            +
            	
         
     | 
| 
      
 1039 
     | 
    
         
            +
            		    
         
     | 
| 
      
 1040 
     | 
    
         
            +
            			    <!-- S IBOX -->
         
     | 
| 
      
 1041 
     | 
    
         
            +
            				<table cellspacing="0" align="right" width="231" border="0" cellpadding="0">
         
     | 
| 
      
 1042 
     | 
    
         
            +
            				<tr>
         
     | 
| 
      
 1043 
     | 
    
         
            +
            			            <td width="5"><img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="5" height="1" alt="" border="0" vspace="0" hspace="0"></td>
         
     | 
| 
      
 1044 
     | 
    
         
            +
            			            <td class="sibtbg">
         
     | 
| 
      
 1045 
     | 
    
         
            +
            			                
         
     | 
| 
      
 1046 
     | 
    
         
            +
            					
         
     | 
| 
      
 1047 
     | 
    
         
            +
            			                    <div class="o">
         
     | 
| 
      
 1048 
     | 
    
         
            +
            			                            <img src="http://newsimg.bbc.co.uk/media/images/47060000/jpg/_47060481_fazalmahmood.jpg" width="226" height="170" alt="Fazal Mahmood" border="0" vspace="0" hspace="0">
         
     | 
| 
      
 1049 
     | 
    
         
            +
            			                    </div>
         
     | 
| 
      
 1050 
     | 
    
         
            +
            					
         
     | 
| 
      
 1051 
     | 
    
         
            +
            			                
         
     | 
| 
      
 1052 
     | 
    
         
            +
            			                     
         
     | 
| 
      
 1053 
     | 
    
         
            +
            			                    <div>
         
     | 
| 
      
 1054 
     | 
    
         
            +
            	
         
     | 
| 
      
 1055 
     | 
    
         
            +
            		<div class="mva">
         
     | 
| 
      
 1056 
     | 
    
         
            +
            			<img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/start_quote_rb.gif" width="24" height="13" alt="" border="0">
         
     | 
| 
      
 1057 
     | 
    
         
            +
            			<b>I'm proud to be a Muslim... and I'm proud to be gay as well - unfortunately a lot of parents don't see that</b>
         
     | 
| 
      
 1058 
     | 
    
         
            +
            		<img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/end_quote_rb.gif" align="right" width="23" height="13" alt="" border="0" vspace="0"><br clear="all"/>	</div>
         
     | 
| 
      
 1059 
     | 
    
         
            +
            	
         
     | 
| 
      
 1060 
     | 
    
         
            +
            	
         
     | 
| 
      
 1061 
     | 
    
         
            +
             
     | 
| 
      
 1062 
     | 
    
         
            +
             
     | 
| 
      
 1063 
     | 
    
         
            +
             
     | 
| 
      
 1064 
     | 
    
         
            +
             
     | 
| 
      
 1065 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1066 
     | 
    
         
            +
            			                
         
     | 
| 
      
 1067 
     | 
    
         
            +
            			                     
         
     | 
| 
      
 1068 
     | 
    
         
            +
            			                    <div class="mva">
         
     | 
| 
      
 1069 
     | 
    
         
            +
            	<div>Fazal Mahmood</div>
         
     | 
| 
      
 1070 
     | 
    
         
            +
             
     | 
| 
      
 1071 
     | 
    
         
            +
             
     | 
| 
      
 1072 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1073 
     | 
    
         
            +
            			                
         
     | 
| 
      
 1074 
     | 
    
         
            +
            			            </td>
         
     | 
| 
      
 1075 
     | 
    
         
            +
            			        </tr>
         
     | 
| 
      
 1076 
     | 
    
         
            +
            				</table>
         
     | 
| 
      
 1077 
     | 
    
         
            +
            				
         
     | 
| 
      
 1078 
     | 
    
         
            +
            			    <!-- E IBOX -->
         
     | 
| 
      
 1079 
     | 
    
         
            +
            			
         
     | 
| 
      
 1080 
     | 
    
         
            +
            	
         
     | 
| 
      
 1081 
     | 
    
         
            +
             
     | 
| 
      
 1082 
     | 
    
         
            +
             
     | 
| 
      
 1083 
     | 
    
         
            +
             
     | 
| 
      
 1084 
     | 
    
         
            +
            <p>The orders were introduced after ministers dropped plans to make forcing someone to marry a crime. </p><p>More than 80 have been imposed so far. Breaching one is contempt of court and can carry a two-year jail term. </p><p>Fazal Mahmood runs a support group for South Asian and Middle Eastern gay men, called Himat, which means strength in Urdu. </p><p>"I've got about 150 people on my mail out list. </p><p>"About 80%... have been coerced into marriage or been forced into marriage or are being forced into marriage," he said. </p><p>Mr Mahmood says homosexuality is considered a taboo issue within close-knit Muslim communities in areas such as London, Bradford and Manchester. </p><p>"I'm proud to be a Muslim, I'm proud to be South Asian, Pakistani and I'm proud to be gay as well. </p><p>"Unfortunately a lot of parents don't see that. All they see is 'what is my community going to feel like when they find out my son or daughter is gay?'." </p><p><b>Keeping quiet</b></p><p>In fact he advises young gay Muslims not to come out to their families. </p><p>"Once you've told your family and friends about your sexuality, the next unfortunate step for your family to do is ask you to leave." </p><p></p>
         
     | 
| 
      
 1085 
     | 
    
         
            +
            <!-- S IIMA -->
         
     | 
| 
      
 1086 
     | 
    
         
            +
            	
         
     | 
| 
      
 1087 
     | 
    
         
            +
            		<table border="0" cellspacing="0" align="right" width="226" cellpadding="0">
         
     | 
| 
      
 1088 
     | 
    
         
            +
            			<tr><td>
         
     | 
| 
      
 1089 
     | 
    
         
            +
            			<div>
         
     | 
| 
      
 1090 
     | 
    
         
            +
            				<img src="http://newsimg.bbc.co.uk/media/images/47059000/jpg/_47059011_fmu.jpg" width="226" height="282" alt="Poster campaign for Forced Marriage Unit " border="0" vspace="0" hspace="0">
         
     | 
| 
      
 1091 
     | 
    
         
            +
            				<div class="cap">The Forced Marriage Unit deals with around 1,600 cases a year</div>
         
     | 
| 
      
 1092 
     | 
    
         
            +
            			</div>
         
     | 
| 
      
 1093 
     | 
    
         
            +
            			</td></tr>
         
     | 
| 
      
 1094 
     | 
    
         
            +
            		</table>
         
     | 
| 
      
 1095 
     | 
    
         
            +
            		
         
     | 
| 
      
 1096 
     | 
    
         
            +
            	
         
     | 
| 
      
 1097 
     | 
    
         
            +
             
     | 
| 
      
 1098 
     | 
    
         
            +
            	
         
     | 
| 
      
 1099 
     | 
    
         
            +
            <!-- E IIMA -->
         
     | 
| 
      
 1100 
     | 
    
         
            +
             
     | 
| 
      
 1101 
     | 
    
         
            +
            <p>Shelim, 21, lives in east London with his large Bangladeshi family, and has decided to keep his sexuality a secret. </p><p>"When they do find out, they're basically going to go against it. </p><p>"My relationship with them is not going to be the same, the respect they have for me is going to be different and I'm going to miss that relationship," he said. </p><p>He is also worried about the repercussions within the local community if they discover he is gay. </p><p>"You see people being killed for being gay and stuff. I think I'd be vulnerable if people knew about me. </p><p>"I've heard a lot of remarks in the past about people saying that gay people should die for religious reasons." </p><p><b>Police protection</b></p><p>A special government unit tackles the issue of forced marriages. Every year it deals with around 1,600 cases of forced marriage. Three-quarters of all calls are from people of South Asian origin. </p><p>Department head Olaf Henricson-Bell said gay and lesbian youngsters were particularly vulnerable. </p><p>"A few weeks ago, an individual got in touch with the unit to say he'd been taken to Pakistan, forced to marry against his will, brought back to the UK then denounced by both his new wife and his family for his sexuality. </p><p>"He'd been subject to physical and other abuse. When he rang us he was scared to leave the home and we had to secure police protection. </p><p>"Forced marriage by its nature is an underground practice and the cases often go unreported. </p><p>"The individuals involved may be reluctant to mention sexuality when they ring us or when they bring their case to the attention of the authorities," he said. </p><p>The unit plans to work with the trust to produce a training programme for Lesbian, Gay, Bisexual, and Transgender organisations working with young people at risk of being forced into marriage. </p><p><b>You can hear more at 1230 and 1800 BST on the BBC's </b>
         
     | 
| 
      
 1102 
     | 
    
         
            +
                
         
     | 
| 
      
 1103 
     | 
    
         
            +
                     <!-- S ILIN -->
         
     | 
| 
      
 1104 
     | 
    
         
            +
                    
         
     | 
| 
      
 1105 
     | 
    
         
            +
                    
         
     | 
| 
      
 1106 
     | 
    
         
            +
                        
         
     | 
| 
      
 1107 
     | 
    
         
            +
                        <a class="bodl" href="http://www.bbc.co.uk/asiannetwork/news/"><b>Asian Network Reports</b></a>
         
     | 
| 
      
 1108 
     | 
    
         
            +
                        
         
     | 
| 
      
 1109 
     | 
    
         
            +
                    
         
     | 
| 
      
 1110 
     | 
    
         
            +
                    <!-- E ILIN -->
         
     | 
| 
      
 1111 
     | 
    
         
            +
                
         
     | 
| 
      
 1112 
     | 
    
         
            +
                
         
     | 
| 
      
 1113 
     | 
    
         
            +
             
     | 
| 
      
 1114 
     | 
    
         
            +
             
     | 
| 
      
 1115 
     | 
    
         
            +
             
     | 
| 
      
 1116 
     | 
    
         
            +
            <b>or via the BBC </b>
         
     | 
| 
      
 1117 
     | 
    
         
            +
                
         
     | 
| 
      
 1118 
     | 
    
         
            +
                     <!-- S ILIN -->
         
     | 
| 
      
 1119 
     | 
    
         
            +
                    
         
     | 
| 
      
 1120 
     | 
    
         
            +
                    
         
     | 
| 
      
 1121 
     | 
    
         
            +
                        
         
     | 
| 
      
 1122 
     | 
    
         
            +
                        <a class="bodl" href="http://www.bbc.co.uk/iplayer/radio/bbc_asian_network">iPlayer.</a>
         
     | 
| 
      
 1123 
     | 
    
         
            +
                        
         
     | 
| 
      
 1124 
     | 
    
         
            +
                    
         
     | 
| 
      
 1125 
     | 
    
         
            +
                    <!-- E ILIN -->
         
     | 
| 
      
 1126 
     | 
    
         
            +
                
         
     | 
| 
      
 1127 
     | 
    
         
            +
                
         
     | 
| 
      
 1128 
     | 
    
         
            +
             
     | 
| 
      
 1129 
     | 
    
         
            +
             
     | 
| 
      
 1130 
     | 
    
         
            +
             
     | 
| 
      
 1131 
     | 
    
         
            +
             
     | 
| 
      
 1132 
     | 
    
         
            +
            </p><!-- E BO -->
         
     | 
| 
      
 1133 
     | 
    
         
            +
            <br /><br clear="all" />
         
     | 
| 
      
 1134 
     | 
    
         
            +
                                    <div id="socialBookMarks" class="sharesb"> 
         
     | 
| 
      
 1135 
     | 
    
         
            +
            <h3>Bookmark with:</h3> 
         
     | 
| 
      
 1136 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 1137 
     | 
    
         
            +
            <li class="delicious"> 
         
     | 
| 
      
 1138 
     | 
    
         
            +
            <a id="delicious" title="Post this story to Delicious" href="http://del.icio.us/post?url=http://news.bbc.co.uk/1/hi/england/8446458.stm&title=Homeless gay Muslims flee marriages">Delicious</a> 
         
     | 
| 
      
 1139 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1140 
     | 
    
         
            +
            <li class="digg"> 
         
     | 
| 
      
 1141 
     | 
    
         
            +
            <a id="digg" title="Post this story to Digg" href="http://digg.com/submit?url=http://news.bbc.co.uk/1/hi/england/8446458.stm&title=Homeless gay Muslims flee marriages">Digg</a> 
         
     | 
| 
      
 1142 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1143 
     | 
    
         
            +
            <li class="reddit"> 
         
     | 
| 
      
 1144 
     | 
    
         
            +
            <a id="reddit" title="Post this story to reddit" href="http://reddit.com/submit?url=http://news.bbc.co.uk/1/hi/england/8446458.stm&title=Homeless gay Muslims flee marriages">reddit</a> 
         
     | 
| 
      
 1145 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1146 
     | 
    
         
            +
            <li class="facebook"> 
         
     | 
| 
      
 1147 
     | 
    
         
            +
            <a id="facebook" title="Post this story to Facebook" href="http://www.facebook.com/sharer.php?u=http://news.bbc.co.uk/1/hi/england/8446458.stm">Facebook</a> 
         
     | 
| 
      
 1148 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1149 
     | 
    
         
            +
            <li class="stumbleupon"> 
         
     | 
| 
      
 1150 
     | 
    
         
            +
            <a id="stumbleupon" title="Post this story to StumbleUpon" href="http://www.stumbleupon.com/submit?url=http://news.bbc.co.uk/1/hi/england/8446458.stm&title=Homeless gay Muslims flee marriages">StumbleUpon</a> 
         
     | 
| 
      
 1151 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1152 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1153 
     | 
    
         
            +
            <p class="what"><a href="http://news.bbc.co.uk/1/hi/help/6915817.stm">What are these?</a></p>
         
     | 
| 
      
 1154 
     | 
    
         
            +
             
     | 
| 
      
 1155 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1156 
     | 
    
         
            +
            <script language="JavaScript">
         
     | 
| 
      
 1157 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 1158 
     | 
    
         
            +
            var bm = new BookMark({site:'News',storyid:8446458,sectionid:41217,url:'/1/hi/england/8446458.stm',edition:'Domestic'});
         
     | 
| 
      
 1159 
     | 
    
         
            +
            //-->
         
     | 
| 
      
 1160 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 1161 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1162 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1163 
     | 
    
         
            +
                
         
     | 
| 
      
 1164 
     | 
    
         
            +
                    <div class="mvtb"><table cellspacing="0" width="416" border="0" cellpadding="0"><tr>
         
     | 
| 
      
 1165 
     | 
    
         
            +
                        <td width="213"><a class="epl" onClick="popUpPage('http://newsvote.bbc.co.uk/mpapps/pagetools/email/news.bbc.co.uk/1/hi/england/8446458.stm','status=no,scrollbars=yes,resizable=yes,width=370,height=445','Mailer')" href="http://newsvote.bbc.co.uk/mpapps/pagetools/email/news.bbc.co.uk/1/hi/england/8446458.stm" target="Mailer">
         
     | 
| 
      
 1166 
     | 
    
         
            +
                            <img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/email.gif" align="left" width="17" height="11" alt="" border="0" vspace="0" hspace="3">
         
     | 
| 
      
 1167 
     | 
    
         
            +
                            E-mail this to a friend
         
     | 
| 
      
 1168 
     | 
    
         
            +
                        </a></td>
         
     | 
| 
      
 1169 
     | 
    
         
            +
                        <td width="203"><a class="epl" onClick="popUpPage('http://newsvote.bbc.co.uk/mpapps/pagetools/print/news.bbc.co.uk/1/hi/england/8446458.stm?ad=1','status=no,scrollbars=yes,toolbar=yes,resizable=yes,menubar=yes,width=600,height=445','Printer')" href="http://newsvote.bbc.co.uk/mpapps/pagetools/print/news.bbc.co.uk/1/hi/england/8446458.stm?ad=1" target="Printer">
         
     | 
| 
      
 1170 
     | 
    
         
            +
            	       	<img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/print.gif " align="left" width="17" height="11" alt="" border="0" vspace="0" hspace="3">
         
     | 
| 
      
 1171 
     | 
    
         
            +
            	 	Printable version
         
     | 
| 
      
 1172 
     | 
    
         
            +
                        </a></td>
         
     | 
| 
      
 1173 
     | 
    
         
            +
                    </tr></table></div>
         
     | 
| 
      
 1174 
     | 
    
         
            +
            		    
         
     | 
| 
      
 1175 
     | 
    
         
            +
                
         
     | 
| 
      
 1176 
     | 
    
         
            +
                
         
     | 
| 
      
 1177 
     | 
    
         
            +
             
     | 
| 
      
 1178 
     | 
    
         
            +
             
     | 
| 
      
 1179 
     | 
    
         
            +
             
     | 
| 
      
 1180 
     | 
    
         
            +
                                    		
         
     | 
| 
      
 1181 
     | 
    
         
            +
                                </td>
         
     | 
| 
      
 1182 
     | 
    
         
            +
                                
         
     | 
| 
      
 1183 
     | 
    
         
            +
                                <td class="storyextra">
         
     | 
| 
      
 1184 
     | 
    
         
            +
            			
         
     | 
| 
      
 1185 
     | 
    
         
            +
            			
         
     | 
| 
      
 1186 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1187 
     | 
    
         
            +
            		
         
     | 
| 
      
 1188 
     | 
    
         
            +
            	   	
         
     | 
| 
      
 1189 
     | 
    
         
            +
            	   		
         
     | 
| 
      
 1190 
     | 
    
         
            +
            	        		
         
     | 
| 
      
 1191 
     | 
    
         
            +
               	    		 		<img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="1" height="10" alt=""><br />
         
     | 
| 
      
 1192 
     | 
    
         
            +
                		    		
         
     | 
| 
      
 1193 
     | 
    
         
            +
            	        
         
     | 
| 
      
 1194 
     | 
    
         
            +
                    
         
     | 
| 
      
 1195 
     | 
    
         
            +
             
     | 
| 
      
 1196 
     | 
    
         
            +
                    
         
     | 
| 
      
 1197 
     | 
    
         
            +
             
     | 
| 
      
 1198 
     | 
    
         
            +
                    
         
     | 
| 
      
 1199 
     | 
    
         
            +
             
     | 
| 
      
 1200 
     | 
    
         
            +
             
     | 
| 
      
 1201 
     | 
    
         
            +
                    
         
     | 
| 
      
 1202 
     | 
    
         
            +
                    	
         
     | 
| 
      
 1203 
     | 
    
         
            +
             
     | 
| 
      
 1204 
     | 
    
         
            +
            	
         
     | 
| 
      
 1205 
     | 
    
         
            +
                            
         
     | 
| 
      
 1206 
     | 
    
         
            +
                                    <div class="seeAlsoH">
         
     | 
| 
      
 1207 
     | 
    
         
            +
                                            SEE ALSO
         
     | 
| 
      
 1208 
     | 
    
         
            +
                                    </div>
         
     | 
| 
      
 1209 
     | 
    
         
            +
                            
         
     | 
| 
      
 1210 
     | 
    
         
            +
                            
         
     | 
| 
      
 1211 
     | 
    
         
            +
            		
         
     | 
| 
      
 1212 
     | 
    
         
            +
            			
         
     | 
| 
      
 1213 
     | 
    
         
            +
            				<div class="arr">
         
     | 
| 
      
 1214 
     | 
    
         
            +
            					
         
     | 
| 
      
 1215 
     | 
    
         
            +
            	
         
     | 
| 
      
 1216 
     | 
    
         
            +
            		<a href="/1/hi/scotland/edinburgh_and_east/8195772.stm">Arranged marriage 're-think' call</a>
         
     | 
| 
      
 1217 
     | 
    
         
            +
            		
         
     | 
| 
      
 1218 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1219 
     | 
    
         
            +
            		
         
     | 
| 
      
 1220 
     | 
    
         
            +
            	
         
     | 
| 
      
 1221 
     | 
    
         
            +
             
     | 
| 
      
 1222 
     | 
    
         
            +
             
     | 
| 
      
 1223 
     | 
    
         
            +
            					
         
     | 
| 
      
 1224 
     | 
    
         
            +
            						
         
     | 
| 
      
 1225 
     | 
    
         
            +
            							<span class="sad">
         
     | 
| 
      
 1226 
     | 
    
         
            +
            								11 Aug 09 | 
         
     | 
| 
      
 1227 
     | 
    
         
            +
            								Edinburgh, East and Fife
         
     | 
| 
      
 1228 
     | 
    
         
            +
            								
         
     | 
| 
      
 1229 
     | 
    
         
            +
            							</span>
         
     | 
| 
      
 1230 
     | 
    
         
            +
            						
         
     | 
| 
      
 1231 
     | 
    
         
            +
            					
         
     | 
| 
      
 1232 
     | 
    
         
            +
            					
         
     | 
| 
      
 1233 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 1234 
     | 
    
         
            +
            			
         
     | 
| 
      
 1235 
     | 
    
         
            +
            				<div class="arr">
         
     | 
| 
      
 1236 
     | 
    
         
            +
            					
         
     | 
| 
      
 1237 
     | 
    
         
            +
            	
         
     | 
| 
      
 1238 
     | 
    
         
            +
            		<a href="/1/hi/entertainment/8072720.stm">Gay Muslim story for EastEnders</a>
         
     | 
| 
      
 1239 
     | 
    
         
            +
            		
         
     | 
| 
      
 1240 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1241 
     | 
    
         
            +
            		
         
     | 
| 
      
 1242 
     | 
    
         
            +
            	
         
     | 
| 
      
 1243 
     | 
    
         
            +
             
     | 
| 
      
 1244 
     | 
    
         
            +
             
     | 
| 
      
 1245 
     | 
    
         
            +
            					
         
     | 
| 
      
 1246 
     | 
    
         
            +
            						
         
     | 
| 
      
 1247 
     | 
    
         
            +
            							<span class="sad">
         
     | 
| 
      
 1248 
     | 
    
         
            +
            								28 May 09 | 
         
     | 
| 
      
 1249 
     | 
    
         
            +
            								Entertainment
         
     | 
| 
      
 1250 
     | 
    
         
            +
            								
         
     | 
| 
      
 1251 
     | 
    
         
            +
            							</span>
         
     | 
| 
      
 1252 
     | 
    
         
            +
            						
         
     | 
| 
      
 1253 
     | 
    
         
            +
            					
         
     | 
| 
      
 1254 
     | 
    
         
            +
            					
         
     | 
| 
      
 1255 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 1256 
     | 
    
         
            +
            			
         
     | 
| 
      
 1257 
     | 
    
         
            +
            				<div class="arr">
         
     | 
| 
      
 1258 
     | 
    
         
            +
            					
         
     | 
| 
      
 1259 
     | 
    
         
            +
            	
         
     | 
| 
      
 1260 
     | 
    
         
            +
            		<a href="/1/hi/uk/7234163.stm">Gay Asians 'marrying to conform'</a>
         
     | 
| 
      
 1261 
     | 
    
         
            +
            		
         
     | 
| 
      
 1262 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1263 
     | 
    
         
            +
            		
         
     | 
| 
      
 1264 
     | 
    
         
            +
            	
         
     | 
| 
      
 1265 
     | 
    
         
            +
             
     | 
| 
      
 1266 
     | 
    
         
            +
             
     | 
| 
      
 1267 
     | 
    
         
            +
            					
         
     | 
| 
      
 1268 
     | 
    
         
            +
            						
         
     | 
| 
      
 1269 
     | 
    
         
            +
            							<span class="sad">
         
     | 
| 
      
 1270 
     | 
    
         
            +
            								08 Feb 08 | 
         
     | 
| 
      
 1271 
     | 
    
         
            +
            								UK
         
     | 
| 
      
 1272 
     | 
    
         
            +
            								
         
     | 
| 
      
 1273 
     | 
    
         
            +
            							</span>
         
     | 
| 
      
 1274 
     | 
    
         
            +
            						
         
     | 
| 
      
 1275 
     | 
    
         
            +
            					
         
     | 
| 
      
 1276 
     | 
    
         
            +
            					
         
     | 
| 
      
 1277 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 1278 
     | 
    
         
            +
            			
         
     | 
| 
      
 1279 
     | 
    
         
            +
            				<div class="arr">
         
     | 
| 
      
 1280 
     | 
    
         
            +
            					
         
     | 
| 
      
 1281 
     | 
    
         
            +
            	
         
     | 
| 
      
 1282 
     | 
    
         
            +
            		<a href="/1/hi/uk/7223743.stm">Call for male forced wedding help</a>
         
     | 
| 
      
 1283 
     | 
    
         
            +
            		
         
     | 
| 
      
 1284 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1285 
     | 
    
         
            +
            		
         
     | 
| 
      
 1286 
     | 
    
         
            +
            	
         
     | 
| 
      
 1287 
     | 
    
         
            +
             
     | 
| 
      
 1288 
     | 
    
         
            +
             
     | 
| 
      
 1289 
     | 
    
         
            +
            					
         
     | 
| 
      
 1290 
     | 
    
         
            +
            						
         
     | 
| 
      
 1291 
     | 
    
         
            +
            							<span class="sad">
         
     | 
| 
      
 1292 
     | 
    
         
            +
            								02 Feb 08 | 
         
     | 
| 
      
 1293 
     | 
    
         
            +
            								UK
         
     | 
| 
      
 1294 
     | 
    
         
            +
            								
         
     | 
| 
      
 1295 
     | 
    
         
            +
            							</span>
         
     | 
| 
      
 1296 
     | 
    
         
            +
            						
         
     | 
| 
      
 1297 
     | 
    
         
            +
            					
         
     | 
| 
      
 1298 
     | 
    
         
            +
            					
         
     | 
| 
      
 1299 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 1300 
     | 
    
         
            +
            			
         
     | 
| 
      
 1301 
     | 
    
         
            +
            		
         
     | 
| 
      
 1302 
     | 
    
         
            +
            		
         
     | 
| 
      
 1303 
     | 
    
         
            +
            	
         
     | 
| 
      
 1304 
     | 
    
         
            +
             
     | 
| 
      
 1305 
     | 
    
         
            +
            	
         
     | 
| 
      
 1306 
     | 
    
         
            +
             
     | 
| 
      
 1307 
     | 
    
         
            +
             
         
     | 
| 
      
 1308 
     | 
    
         
            +
             
     | 
| 
      
 1309 
     | 
    
         
            +
            <img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="1" height="10" alt=""><br />
         
     | 
| 
      
 1310 
     | 
    
         
            +
                    
         
     | 
| 
      
 1311 
     | 
    
         
            +
                    	
         
     | 
| 
      
 1312 
     | 
    
         
            +
                    	
         
     | 
| 
      
 1313 
     | 
    
         
            +
            	
         
     | 
| 
      
 1314 
     | 
    
         
            +
            		
         
     | 
| 
      
 1315 
     | 
    
         
            +
            			
         
     | 
| 
      
 1316 
     | 
    
         
            +
            				<div class="nlp">
         
     | 
| 
      
 1317 
     | 
    
         
            +
            					RELATED BBC LINKS
         
     | 
| 
      
 1318 
     | 
    
         
            +
            					
         
     | 
| 
      
 1319 
     | 
    
         
            +
            				</div>
         
     | 
| 
      
 1320 
     | 
    
         
            +
            			
         
     | 
| 
      
 1321 
     | 
    
         
            +
            			
         
     | 
| 
      
 1322 
     | 
    
         
            +
            				
         
     | 
| 
      
 1323 
     | 
    
         
            +
            					<div class="arr">
         
     | 
| 
      
 1324 
     | 
    
         
            +
            						<a href="http://www.bbc.co.uk/asiannetwork/">
         
     | 
| 
      
 1325 
     | 
    
         
            +
            							Asian Network
         
     | 
| 
      
 1326 
     | 
    
         
            +
            							
         
     | 
| 
      
 1327 
     | 
    
         
            +
            						</a>
         
     | 
| 
      
 1328 
     | 
    
         
            +
            					</div>
         
     | 
| 
      
 1329 
     | 
    
         
            +
            				
         
     | 
| 
      
 1330 
     | 
    
         
            +
            			
         
     | 
| 
      
 1331 
     | 
    
         
            +
            			
         
     | 
| 
      
 1332 
     | 
    
         
            +
            		
         
     | 
| 
      
 1333 
     | 
    
         
            +
            	
         
     | 
| 
      
 1334 
     | 
    
         
            +
             
     | 
| 
      
 1335 
     | 
    
         
            +
            	
         
     | 
| 
      
 1336 
     | 
    
         
            +
            		
         
     | 
| 
      
 1337 
     | 
    
         
            +
            			<img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="1" height="5" alt=""><br />
         
     | 
| 
      
 1338 
     | 
    
         
            +
            		
         
     | 
| 
      
 1339 
     | 
    
         
            +
            		
         
     | 
| 
      
 1340 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1341 
     | 
    
         
            +
                                            <div class="nlp">
         
     | 
| 
      
 1342 
     | 
    
         
            +
                                                    RELATED INTERNET LINKS
         
     | 
| 
      
 1343 
     | 
    
         
            +
                                                    
         
     | 
| 
      
 1344 
     | 
    
         
            +
                                            </div>
         
     | 
| 
      
 1345 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1346 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1347 
     | 
    
         
            +
                                            
         
     | 
| 
      
 1348 
     | 
    
         
            +
                                                    <div class="arr">
         
     | 
| 
      
 1349 
     | 
    
         
            +
                                                            <a href="http://www.akt.org.uk/">
         
     | 
| 
      
 1350 
     | 
    
         
            +
                                                                    Albert Kennedy Trust
         
     | 
| 
      
 1351 
     | 
    
         
            +
                                                                    
         
     | 
| 
      
 1352 
     | 
    
         
            +
                                                            </a>
         
     | 
| 
      
 1353 
     | 
    
         
            +
                                                    </div>
         
     | 
| 
      
 1354 
     | 
    
         
            +
                                            
         
     | 
| 
      
 1355 
     | 
    
         
            +
                                                    <div class="arr">
         
     | 
| 
      
 1356 
     | 
    
         
            +
                                                            <a href="http://www.fco.gov.uk/en/global-issues/human-rights/forced-marriage-unit/">
         
     | 
| 
      
 1357 
     | 
    
         
            +
                                                                    Force Marriage Unit
         
     | 
| 
      
 1358 
     | 
    
         
            +
                                                                    
         
     | 
| 
      
 1359 
     | 
    
         
            +
                                                            </a>
         
     | 
| 
      
 1360 
     | 
    
         
            +
                                                    </div>
         
     | 
| 
      
 1361 
     | 
    
         
            +
                                            
         
     | 
| 
      
 1362 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1363 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1364 
     | 
    
         
            +
                                            
         
     | 
| 
      
 1365 
     | 
    
         
            +
                                                    <div class="di">
         
     | 
| 
      
 1366 
     | 
    
         
            +
                                                            The BBC is not responsible for the content of external internet sites
         
     | 
| 
      
 1367 
     | 
    
         
            +
                                                    </div>
         
     | 
| 
      
 1368 
     | 
    
         
            +
                                                    
         
     | 
| 
      
 1369 
     | 
    
         
            +
                                            
         
     | 
| 
      
 1370 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1371 
     | 
    
         
            +
                            
         
     | 
| 
      
 1372 
     | 
    
         
            +
            	
         
     | 
| 
      
 1373 
     | 
    
         
            +
             
     | 
| 
      
 1374 
     | 
    
         
            +
             
     | 
| 
      
 1375 
     | 
    
         
            +
             
     | 
| 
      
 1376 
     | 
    
         
            +
            <img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="1" height="10" alt=""><br />
         
     | 
| 
      
 1377 
     | 
    
         
            +
                    
         
     | 
| 
      
 1378 
     | 
    
         
            +
             
     | 
| 
      
 1379 
     | 
    
         
            +
                    
         
     | 
| 
      
 1380 
     | 
    
         
            +
             
     | 
| 
      
 1381 
     | 
    
         
            +
             
     | 
| 
      
 1382 
     | 
    
         
            +
                    
         
     | 
| 
      
 1383 
     | 
    
         
            +
                    	
         
     | 
| 
      
 1384 
     | 
    
         
            +
             
     | 
| 
      
 1385 
     | 
    
         
            +
            			
         
     | 
| 
      
 1386 
     | 
    
         
            +
             
     | 
| 
      
 1387 
     | 
    
         
            +
                
         
     | 
| 
      
 1388 
     | 
    
         
            +
                    
         
     | 
| 
      
 1389 
     | 
    
         
            +
            		
         
     | 
| 
      
 1390 
     | 
    
         
            +
                                
         
     | 
| 
      
 1391 
     | 
    
         
            +
                                    <div class="topStoryH">
         
     | 
| 
      
 1392 
     | 
    
         
            +
                                        <a class="lp" href="/1/hi/england/default.stm">TOP ENGLAND STORIES</a>
         
     | 
| 
      
 1393 
     | 
    
         
            +
                                    </div>
         
     | 
| 
      
 1394 
     | 
    
         
            +
                                
         
     | 
| 
      
 1395 
     | 
    
         
            +
                                
         
     | 
| 
      
 1396 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1397 
     | 
    
         
            +
                                        <div class="arr">
         
     | 
| 
      
 1398 
     | 
    
         
            +
            	
         
     | 
| 
      
 1399 
     | 
    
         
            +
            		<a href="/1/hi/uk/8451014.stm">Islamists scrap war protest plan</a>
         
     | 
| 
      
 1400 
     | 
    
         
            +
            		
         
     | 
| 
      
 1401 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1402 
     | 
    
         
            +
            		
         
     | 
| 
      
 1403 
     | 
    
         
            +
            	
         
     | 
| 
      
 1404 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1405 
     | 
    
         
            +
             
     | 
| 
      
 1406 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1407 
     | 
    
         
            +
                                        <div class="arr">
         
     | 
| 
      
 1408 
     | 
    
         
            +
            	
         
     | 
| 
      
 1409 
     | 
    
         
            +
            		<a href="/1/hi/england/tees/8450751.stm">Man dies after icy river plunge</a>
         
     | 
| 
      
 1410 
     | 
    
         
            +
            		
         
     | 
| 
      
 1411 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1412 
     | 
    
         
            +
            		
         
     | 
| 
      
 1413 
     | 
    
         
            +
            	
         
     | 
| 
      
 1414 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1415 
     | 
    
         
            +
             
     | 
| 
      
 1416 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1417 
     | 
    
         
            +
                                        <div class="arr">
         
     | 
| 
      
 1418 
     | 
    
         
            +
            	
         
     | 
| 
      
 1419 
     | 
    
         
            +
            		<a href="/1/hi/england/london/8451068.stm">Boy charged with Halloween murder</a>
         
     | 
| 
      
 1420 
     | 
    
         
            +
            		
         
     | 
| 
      
 1421 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1422 
     | 
    
         
            +
            		
         
     | 
| 
      
 1423 
     | 
    
         
            +
            	
         
     | 
| 
      
 1424 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1425 
     | 
    
         
            +
             
     | 
| 
      
 1426 
     | 
    
         
            +
                                    
         
     | 
| 
      
 1427 
     | 
    
         
            +
            			<script language="JavaScript">getRssUrlStory('/rss/newsonline_uk_edition/england/rss.xml')</script>
         
     | 
| 
      
 1428 
     | 
    
         
            +
                                
         
     | 
| 
      
 1429 
     | 
    
         
            +
            		
         
     | 
| 
      
 1430 
     | 
    
         
            +
                    
         
     | 
| 
      
 1431 
     | 
    
         
            +
             
     | 
| 
      
 1432 
     | 
    
         
            +
            	
         
     | 
| 
      
 1433 
     | 
    
         
            +
                
         
     | 
| 
      
 1434 
     | 
    
         
            +
             
     | 
| 
      
 1435 
     | 
    
         
            +
             
     | 
| 
      
 1436 
     | 
    
         
            +
             
     | 
| 
      
 1437 
     | 
    
         
            +
            <img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="1" height="10" alt=""><br />
         
     | 
| 
      
 1438 
     | 
    
         
            +
                    
         
     | 
| 
      
 1439 
     | 
    
         
            +
                    
         
     | 
| 
      
 1440 
     | 
    
         
            +
                    <img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="1" height="1" alt="" />
         
     | 
| 
      
 1441 
     | 
    
         
            +
            <div id="nav1">
         
     | 
| 
      
 1442 
     | 
    
         
            +
            <div id="popStory">
         
     | 
| 
      
 1443 
     | 
    
         
            +
            <h4><a href="/1/shared/bsp/hi/live_stats/html/map.stm" class="lp">MOST POPULAR STORIES NOW</a></h4>
         
     | 
| 
      
 1444 
     | 
    
         
            +
             
     | 
| 
      
 1445 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1446 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1447 
     | 
    
         
            +
             
     | 
| 
      
 1448 
     | 
    
         
            +
            <script>
         
     | 
| 
      
 1449 
     | 
    
         
            +
            	function liveStatsTabs(newTab,oldTab) {
         
     | 
| 
      
 1450 
     | 
    
         
            +
            	
         
     | 
| 
      
 1451 
     | 
    
         
            +
            	if (document.getElementById)
         
     | 
| 
      
 1452 
     | 
    
         
            +
            	{
         
     | 
| 
      
 1453 
     | 
    
         
            +
            		document.getElementById(newTab).style.display = "inline";
         
     | 
| 
      
 1454 
     | 
    
         
            +
            		document.getElementById(oldTab).style.display = "none";
         
     | 
| 
      
 1455 
     | 
    
         
            +
            		return false;
         
     | 
| 
      
 1456 
     | 
    
         
            +
            	}
         
     | 
| 
      
 1457 
     | 
    
         
            +
            	else if (document.all)
         
     | 
| 
      
 1458 
     | 
    
         
            +
            	{
         
     | 
| 
      
 1459 
     | 
    
         
            +
            		document.all[oldTab].style.display = "none";
         
     | 
| 
      
 1460 
     | 
    
         
            +
            		document.all[newTab].style.display = "inline";
         
     | 
| 
      
 1461 
     | 
    
         
            +
            		return false;
         
     | 
| 
      
 1462 
     | 
    
         
            +
            	}
         
     | 
| 
      
 1463 
     | 
    
         
            +
            	else {
         
     | 
| 
      
 1464 
     | 
    
         
            +
            		return true;
         
     | 
| 
      
 1465 
     | 
    
         
            +
            	}
         
     | 
| 
      
 1466 
     | 
    
         
            +
            	}
         
     | 
| 
      
 1467 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 1468 
     | 
    
         
            +
             
     | 
| 
      
 1469 
     | 
    
         
            +
            <div id="livestats100" class="statsStory">	
         
     | 
| 
      
 1470 
     | 
    
         
            +
            	<ul class="tabpopStory">
         
     | 
| 
      
 1471 
     | 
    
         
            +
            		<li id="livestats101" class="tabpopHead">SHARED</li>
         
     | 
| 
      
 1472 
     | 
    
         
            +
            		<li id="livestats102"><a href="/1/shared/bsp/hi/live_stats/html/map.stm" onclick="return liveStatsTabs('livestats200','livestats100')">READ</a></li>
         
     | 
| 
      
 1473 
     | 
    
         
            +
            		<li id="livestats103"><a href="/1/shared/bsp/hi/live_stats/html/map.stm" onclick="return liveStatsTabs('livestats300','livestats100')">WATCHED/LISTENED</a></li>
         
     | 
| 
      
 1474 
     | 
    
         
            +
            	</ul>
         
     | 
| 
      
 1475 
     | 
    
         
            +
            <ul
         
     | 
| 
      
 1476 
     | 
    
         
            +
              class="popstoryList">
         
     | 
| 
      
 1477 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1478 
     | 
    
         
            +
                class="mp1">
         
     | 
| 
      
 1479 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1480 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/health/8449288.stm">Why light can worsen migraines </a>
         
     | 
| 
      
 1481 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1482 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1483 
     | 
    
         
            +
                class="mp2">
         
     | 
| 
      
 1484 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1485 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/health/8448147.stm">Concern over prostate cancer test</a>
         
     | 
| 
      
 1486 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1487 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1488 
     | 
    
         
            +
                class="mp3">
         
     | 
| 
      
 1489 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1490 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/magazine/8447996.stm">Page-turning passion</a>
         
     | 
| 
      
 1491 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1492 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1493 
     | 
    
         
            +
                class="mp4">
         
     | 
| 
      
 1494 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1495 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/world/europe/8450380.stm">Josipovic elected Croatia leader</a>
         
     | 
| 
      
 1496 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1497 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1498 
     | 
    
         
            +
                class="mp5">
         
     | 
| 
      
 1499 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1500 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/entertainment/8449039.stm">Pensioner Rod Stewart's hits </a>
         
     | 
| 
      
 1501 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1502 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1503 
     | 
    
         
            +
            <a href="/1/shared/bsp/hi/live_stats/html/map.stm" class="arr">Most popular now, in detail </a>
         
     | 
| 
      
 1504 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1505 
     | 
    
         
            +
            <div id="livestats200" class="statsStory">
         
     | 
| 
      
 1506 
     | 
    
         
            +
            <ul class="tabpopStory">
         
     | 
| 
      
 1507 
     | 
    
         
            +
            		<li id="livestats201"><a href="/1/shared/bsp/hi/live_stats/html/map.stm" onclick="return liveStatsTabs('livestats100','livestats200')">SHARED</a></li>
         
     | 
| 
      
 1508 
     | 
    
         
            +
            		<li id="livestats202" class="tabpopHead">READ</li>
         
     | 
| 
      
 1509 
     | 
    
         
            +
            		<li id="livestats203"><a href="/1/shared/bsp/hi/live_stats/html/map.stm" onclick="return liveStatsTabs('livestats300','livestats200')">WATCHED/LISTENED</a></li>
         
     | 
| 
      
 1510 
     | 
    
         
            +
            	</ul>
         
     | 
| 
      
 1511 
     | 
    
         
            +
            <ul
         
     | 
| 
      
 1512 
     | 
    
         
            +
              class="popstoryList">
         
     | 
| 
      
 1513 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1514 
     | 
    
         
            +
                class="mp1">
         
     | 
| 
      
 1515 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1516 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/england/8446458.stm">Homeless gay Muslims flee marriages</a>
         
     | 
| 
      
 1517 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1518 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1519 
     | 
    
         
            +
                class="mp2">
         
     | 
| 
      
 1520 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1521 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/uk/8451079.stm">Service links 350 guns to crimes</a>
         
     | 
| 
      
 1522 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1523 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1524 
     | 
    
         
            +
                class="mp3">
         
     | 
| 
      
 1525 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1526 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/uk/8451014.stm">Islamists scrap war protest plan</a>
         
     | 
| 
      
 1527 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1528 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1529 
     | 
    
         
            +
                class="mp4">
         
     | 
| 
      
 1530 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1531 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/uk/8451083.stm">Grandmother's death probed by MoD</a>
         
     | 
| 
      
 1532 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1533 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1534 
     | 
    
         
            +
                class="mp5">
         
     | 
| 
      
 1535 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1536 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/world/middle_east/8451085.stm">Israel to construct Egypt barrier</a>
         
     | 
| 
      
 1537 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1538 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1539 
     | 
    
         
            +
                class="mp6">
         
     | 
| 
      
 1540 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1541 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/health/8436259.stm">The utensils keeping frail eating</a>
         
     | 
| 
      
 1542 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1543 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1544 
     | 
    
         
            +
                class="mp7">
         
     | 
| 
      
 1545 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1546 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/northern_ireland/8450544.stm">Iris Robinson receiving treatment</a>
         
     | 
| 
      
 1547 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1548 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1549 
     | 
    
         
            +
                class="mp8">
         
     | 
| 
      
 1550 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1551 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/world/asia-pacific/8450713.stm">'Allah' church fire attacks grow</a>
         
     | 
| 
      
 1552 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1553 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1554 
     | 
    
         
            +
                class="mp9">
         
     | 
| 
      
 1555 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1556 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/uk/8450603.stm">Afghan bomb kills Mirror reporter</a>
         
     | 
| 
      
 1557 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1558 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1559 
     | 
    
         
            +
                class="mp10">
         
     | 
| 
      
 1560 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1561 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/business/8446087.stm">Santander arrives in the High Street</a>
         
     | 
| 
      
 1562 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1563 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1564 
     | 
    
         
            +
            <a href="/1/shared/bsp/hi/live_stats/html/map.stm" class="arr">Most popular now, in detail </a>
         
     | 
| 
      
 1565 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1566 
     | 
    
         
            +
            <div id="livestats300" class="statsStory">
         
     | 
| 
      
 1567 
     | 
    
         
            +
            <ul class="tabpopStory">
         
     | 
| 
      
 1568 
     | 
    
         
            +
            		<li id="livestats301"><a href="/1/shared/bsp/hi/live_stats/html/map.stm" onclick="return liveStatsTabs('livestats100','livestats300')">SHARED</a></li>
         
     | 
| 
      
 1569 
     | 
    
         
            +
            		<li id="livestats302"><a href="/1/shared/bsp/hi/live_stats/html/map.stm" onclick="return liveStatsTabs('livestats200','livestats300')">READ</a></li>
         
     | 
| 
      
 1570 
     | 
    
         
            +
            		<li id="livestats303" class="tabpopHead">WATCHED/LISTENED</li>
         
     | 
| 
      
 1571 
     | 
    
         
            +
            	</ul>
         
     | 
| 
      
 1572 
     | 
    
         
            +
            <ul
         
     | 
| 
      
 1573 
     | 
    
         
            +
              class="popstoryList">
         
     | 
| 
      
 1574 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1575 
     | 
    
         
            +
                class="mp1">
         
     | 
| 
      
 1576 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1577 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/technology/8450385.stm">
         
     | 
| 
      
 1578 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1579 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1580 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1581 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1582 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1583 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1584 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1585 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1586 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />Reporter breaks 'unbreakable' phone</a>
         
     | 
| 
      
 1587 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1588 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1589 
     | 
    
         
            +
                class="mp2">
         
     | 
| 
      
 1590 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1591 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/technology/8449893.stm">
         
     | 
| 
      
 1592 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1593 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1594 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1595 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1596 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1597 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1598 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1599 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1600 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />'Almost indestructible' hard drive tested</a>
         
     | 
| 
      
 1601 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1602 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1603 
     | 
    
         
            +
                class="mp3">
         
     | 
| 
      
 1604 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1605 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/world/europe/8451006.stm">
         
     | 
| 
      
 1606 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1607 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1608 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1609 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1610 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1611 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1612 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1613 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1614 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />Skaters take to Amsterdam canals</a>
         
     | 
| 
      
 1615 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1616 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1617 
     | 
    
         
            +
                class="mp4">
         
     | 
| 
      
 1618 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1619 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/world/asia-pacific/8441626.stm">
         
     | 
| 
      
 1620 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1621 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1622 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1623 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1624 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1625 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1626 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1627 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1628 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />Close-Up: Hong Kong's Escalators</a>
         
     | 
| 
      
 1629 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1630 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1631 
     | 
    
         
            +
                class="mp5">
         
     | 
| 
      
 1632 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1633 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/uk/7459669.stm">
         
     | 
| 
      
 1634 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1635 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1636 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1637 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1638 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1639 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1640 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1641 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1642 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />BBC News Channel</a>
         
     | 
| 
      
 1643 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1644 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1645 
     | 
    
         
            +
                class="mp6">
         
     | 
| 
      
 1646 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1647 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/entertainment/8451069.stm">
         
     | 
| 
      
 1648 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1649 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1650 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1651 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1652 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1653 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1654 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1655 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1656 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />Evans eager to start Wogan slot</a>
         
     | 
| 
      
 1657 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1658 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1659 
     | 
    
         
            +
                class="mp7">
         
     | 
| 
      
 1660 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1661 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/world/europe/8450457.stm">
         
     | 
| 
      
 1662 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1663 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1664 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1665 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1666 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1667 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1668 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1669 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1670 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />Annual ice swim draws big crowd</a>
         
     | 
| 
      
 1671 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1672 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1673 
     | 
    
         
            +
                class="mp8">
         
     | 
| 
      
 1674 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1675 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/business/8450426.stm">
         
     | 
| 
      
 1676 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1677 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1678 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1679 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1680 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1681 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1682 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1683 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1684 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />Cold snap sees sales plunge</a>
         
     | 
| 
      
 1685 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1686 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1687 
     | 
    
         
            +
                class="mp9">
         
     | 
| 
      
 1688 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1689 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/uk/8450560.stm">
         
     | 
| 
      
 1690 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1691 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1692 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1693 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1694 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1695 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1696 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1697 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1698 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />Snow gives Scottish economy a boost</a>
         
     | 
| 
      
 1699 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1700 
     | 
    
         
            +
              <li
         
     | 
| 
      
 1701 
     | 
    
         
            +
                class="mp10">
         
     | 
| 
      
 1702 
     | 
    
         
            +
                <a
         
     | 
| 
      
 1703 
     | 
    
         
            +
                  href="http://news.bbc.co.uk/1/hi/entertainment/8420339.stm">
         
     | 
| 
      
 1704 
     | 
    
         
            +
                  <img
         
     | 
| 
      
 1705 
     | 
    
         
            +
                    height="13"
         
     | 
| 
      
 1706 
     | 
    
         
            +
                    hspace="0"
         
     | 
| 
      
 1707 
     | 
    
         
            +
                    align="left"
         
     | 
| 
      
 1708 
     | 
    
         
            +
                    vspace="2"
         
     | 
| 
      
 1709 
     | 
    
         
            +
                    border="0"
         
     | 
| 
      
 1710 
     | 
    
         
            +
                    width="20"
         
     | 
| 
      
 1711 
     | 
    
         
            +
                    alt="video"
         
     | 
| 
      
 1712 
     | 
    
         
            +
                    src="http://newsimg.bbc.co.uk/nol/shared/img/v3/icons/video_single.gif" />Sir Terry signs off from breakfast show</a>
         
     | 
| 
      
 1713 
     | 
    
         
            +
              </li>
         
     | 
| 
      
 1714 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1715 
     | 
    
         
            +
            <a href="/1/shared/bsp/hi/live_stats/html/map.stm" class="arr">Most popular now, in detail </a>
         
     | 
| 
      
 1716 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1717 
     | 
    
         
            +
             
     | 
| 
      
 1718 
     | 
    
         
            +
             
     | 
| 
      
 1719 
     | 
    
         
            +
            <div class="clear"></div>
         
     | 
| 
      
 1720 
     | 
    
         
            +
            <script>
         
     | 
| 
      
 1721 
     | 
    
         
            +
            	liveStatsTabs('livestats200','livestats100');
         
     | 
| 
      
 1722 
     | 
    
         
            +
            	liveStatsTabs('livestats200','livestats300');
         
     | 
| 
      
 1723 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 1724 
     | 
    
         
            +
             
     | 
| 
      
 1725 
     | 
    
         
            +
             
     | 
| 
      
 1726 
     | 
    
         
            +
             
     | 
| 
      
 1727 
     | 
    
         
            +
             
     | 
| 
      
 1728 
     | 
    
         
            +
                                </td>
         
     | 
| 
      
 1729 
     | 
    
         
            +
                            </tr>
         
     | 
| 
      
 1730 
     | 
    
         
            +
                             <tr><td colspan="3"> 
         
     | 
| 
      
 1731 
     | 
    
         
            +
            <div class="o">
         
     | 
| 
      
 1732 
     | 
    
         
            +
                  
         
     | 
| 
      
 1733 
     | 
    
         
            +
                
         
     | 
| 
      
 1734 
     | 
    
         
            +
             
     | 
| 
      
 1735 
     | 
    
         
            +
              <table cellspacing="0" border="0" cellpadding="0" width="466">
         
     | 
| 
      
 1736 
     | 
    
         
            +
                <tr>
         
     | 
| 
      
 1737 
     | 
    
         
            +
                  <td valign="top" class="gpromo" width="10"><img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="10" height="1" alt="" border="0" vspace="0" hspace="0"></td><td valign="top" width="446">
         
     | 
| 
      
 1738 
     | 
    
         
            +
                  
         
     | 
| 
      
 1739 
     | 
    
         
            +
                
         
     | 
| 
      
 1740 
     | 
    
         
            +
                    <div class="promotopbg">
         
     | 
| 
      
 1741 
     | 
    
         
            +
                    
         
     | 
| 
      
 1742 
     | 
    
         
            +
            	
         
     | 
| 
      
 1743 
     | 
    
         
            +
                        
         
     | 
| 
      
 1744 
     | 
    
         
            +
                        
         
     | 
| 
      
 1745 
     | 
    
         
            +
            		
         
     | 
| 
      
 1746 
     | 
    
         
            +
                        
         
     | 
| 
      
 1747 
     | 
    
         
            +
                        
         
     | 
| 
      
 1748 
     | 
    
         
            +
            	<div class="nlp">
         
     | 
| 
      
 1749 
     | 
    
         
            +
            		
         
     | 
| 
      
 1750 
     | 
    
         
            +
            			
         
     | 
| 
      
 1751 
     | 
    
         
            +
            			FEATURES, VIEWS, ANALYSIS
         
     | 
| 
      
 1752 
     | 
    
         
            +
            		
         
     | 
| 
      
 1753 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 1754 
     | 
    
         
            +
             
     | 
| 
      
 1755 
     | 
    
         
            +
                        
         
     | 
| 
      
 1756 
     | 
    
         
            +
                            
         
     | 
| 
      
 1757 
     | 
    
         
            +
                                
         
     | 
| 
      
 1758 
     | 
    
         
            +
                            
         
     | 
| 
      
 1759 
     | 
    
         
            +
                        
         
     | 
| 
      
 1760 
     | 
    
         
            +
            	
         
     | 
| 
      
 1761 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 1762 
     | 
    
         
            +
                
         
     | 
| 
      
 1763 
     | 
    
         
            +
             
     | 
| 
      
 1764 
     | 
    
         
            +
              <table cellspacing="0" border="0" cellpadding="0" width="446">
         
     | 
| 
      
 1765 
     | 
    
         
            +
                <tr>
         
     | 
| 
      
 1766 
     | 
    
         
            +
                  <td valign="top" width="126">
         
     | 
| 
      
 1767 
     | 
    
         
            +
                
         
     | 
| 
      
 1768 
     | 
    
         
            +
                    <div class="promobottombg">
         
     | 
| 
      
 1769 
     | 
    
         
            +
                    
         
     | 
| 
      
 1770 
     | 
    
         
            +
            	
         
     | 
| 
      
 1771 
     | 
    
         
            +
                        
         
     | 
| 
      
 1772 
     | 
    
         
            +
                        
         
     | 
| 
      
 1773 
     | 
    
         
            +
            		
         
     | 
| 
      
 1774 
     | 
    
         
            +
                        
         
     | 
| 
      
 1775 
     | 
    
         
            +
                        
         
     | 
| 
      
 1776 
     | 
    
         
            +
            	<div class="mvb">
         
     | 
| 
      
 1777 
     | 
    
         
            +
            		<a href="/1/hi/health/8436259.stm"><img src="http://newsimg.bbc.co.uk/media/images/47016000/jpg/_47016642_plate2.jpg" align="" width="126" height="71" alt="Contrast colours emphasize food" border="0" vspace="0" hspace="0"></a>
         
     | 
| 
      
 1778 
     | 
    
         
            +
            		
         
     | 
| 
      
 1779 
     | 
    
         
            +
            		
         
     | 
| 
      
 1780 
     | 
    
         
            +
            		
         
     | 
| 
      
 1781 
     | 
    
         
            +
            	
         
     | 
| 
      
 1782 
     | 
    
         
            +
            		<a class="shl" href="/1/hi/health/8436259.stm">Dementia care</a>
         
     | 
| 
      
 1783 
     | 
    
         
            +
            		
         
     | 
| 
      
 1784 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1785 
     | 
    
         
            +
            		
         
     | 
| 
      
 1786 
     | 
    
         
            +
            	
         
     | 
| 
      
 1787 
     | 
    
         
            +
             
     | 
| 
      
 1788 
     | 
    
         
            +
             
     | 
| 
      
 1789 
     | 
    
         
            +
            		
         
     | 
| 
      
 1790 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 1791 
     | 
    
         
            +
            	
         
     | 
| 
      
 1792 
     | 
    
         
            +
            	<div class="o">
         
     | 
| 
      
 1793 
     | 
    
         
            +
            	
         
     | 
| 
      
 1794 
     | 
    
         
            +
            		
         
     | 
| 
      
 1795 
     | 
    
         
            +
            			
         
     | 
| 
      
 1796 
     | 
    
         
            +
            			How new utensils can keep frail people eating
         
     | 
| 
      
 1797 
     | 
    
         
            +
            			
         
     | 
| 
      
 1798 
     | 
    
         
            +
            		
         
     | 
| 
      
 1799 
     | 
    
         
            +
            			
         
     | 
| 
      
 1800 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1801 
     | 
    
         
            +
             
     | 
| 
      
 1802 
     | 
    
         
            +
            	
         
     | 
| 
      
 1803 
     | 
    
         
            +
            	
         
     | 
| 
      
 1804 
     | 
    
         
            +
            	
         
     | 
| 
      
 1805 
     | 
    
         
            +
             
     | 
| 
      
 1806 
     | 
    
         
            +
             
     | 
| 
      
 1807 
     | 
    
         
            +
             
     | 
| 
      
 1808 
     | 
    
         
            +
                        
         
     | 
| 
      
 1809 
     | 
    
         
            +
                            
         
     | 
| 
      
 1810 
     | 
    
         
            +
                                
         
     | 
| 
      
 1811 
     | 
    
         
            +
                            
         
     | 
| 
      
 1812 
     | 
    
         
            +
                        
         
     | 
| 
      
 1813 
     | 
    
         
            +
            	
         
     | 
| 
      
 1814 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 1815 
     | 
    
         
            +
                
         
     | 
| 
      
 1816 
     | 
    
         
            +
            </td><td valign="top" class="gpromo" width="34"><img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="34" height="1" alt="" border="0" vspace="0" hspace="0"></td><td valign="top" width="126">
         
     | 
| 
      
 1817 
     | 
    
         
            +
                
         
     | 
| 
      
 1818 
     | 
    
         
            +
                    <div class="promobottombg">
         
     | 
| 
      
 1819 
     | 
    
         
            +
                    
         
     | 
| 
      
 1820 
     | 
    
         
            +
            	
         
     | 
| 
      
 1821 
     | 
    
         
            +
                        
         
     | 
| 
      
 1822 
     | 
    
         
            +
                        
         
     | 
| 
      
 1823 
     | 
    
         
            +
            		
         
     | 
| 
      
 1824 
     | 
    
         
            +
                        
         
     | 
| 
      
 1825 
     | 
    
         
            +
                        
         
     | 
| 
      
 1826 
     | 
    
         
            +
            	<div class="mvb">
         
     | 
| 
      
 1827 
     | 
    
         
            +
            		<a href="/1/hi/northern_ireland/8451061.stm"><img src="http://newsimg.bbc.co.uk/media/images/47079000/jpg/_47079840_-1.jpg" align="" width="126" height="71" alt="Peter Robinson (left) and Martin McGuinness" border="0" vspace="0" hspace="0"></a>
         
     | 
| 
      
 1828 
     | 
    
         
            +
            		
         
     | 
| 
      
 1829 
     | 
    
         
            +
            		
         
     | 
| 
      
 1830 
     | 
    
         
            +
            		
         
     | 
| 
      
 1831 
     | 
    
         
            +
            	
         
     | 
| 
      
 1832 
     | 
    
         
            +
            		<a class="shl" href="/1/hi/northern_ireland/8451061.stm">Near the rocks</a>
         
     | 
| 
      
 1833 
     | 
    
         
            +
            		
         
     | 
| 
      
 1834 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1835 
     | 
    
         
            +
            		
         
     | 
| 
      
 1836 
     | 
    
         
            +
            	
         
     | 
| 
      
 1837 
     | 
    
         
            +
             
     | 
| 
      
 1838 
     | 
    
         
            +
             
     | 
| 
      
 1839 
     | 
    
         
            +
            		
         
     | 
| 
      
 1840 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 1841 
     | 
    
         
            +
            	
         
     | 
| 
      
 1842 
     | 
    
         
            +
            	<div class="o">
         
     | 
| 
      
 1843 
     | 
    
         
            +
            	
         
     | 
| 
      
 1844 
     | 
    
         
            +
            		
         
     | 
| 
      
 1845 
     | 
    
         
            +
            			
         
     | 
| 
      
 1846 
     | 
    
         
            +
            			Northern Ireland's coalition is close to breaking point. 
         
     | 
| 
      
 1847 
     | 
    
         
            +
            			
         
     | 
| 
      
 1848 
     | 
    
         
            +
            		
         
     | 
| 
      
 1849 
     | 
    
         
            +
            			
         
     | 
| 
      
 1850 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1851 
     | 
    
         
            +
             
     | 
| 
      
 1852 
     | 
    
         
            +
            	
         
     | 
| 
      
 1853 
     | 
    
         
            +
            	
         
     | 
| 
      
 1854 
     | 
    
         
            +
            	
         
     | 
| 
      
 1855 
     | 
    
         
            +
             
     | 
| 
      
 1856 
     | 
    
         
            +
             
     | 
| 
      
 1857 
     | 
    
         
            +
             
     | 
| 
      
 1858 
     | 
    
         
            +
                        
         
     | 
| 
      
 1859 
     | 
    
         
            +
                            
         
     | 
| 
      
 1860 
     | 
    
         
            +
                                
         
     | 
| 
      
 1861 
     | 
    
         
            +
                            
         
     | 
| 
      
 1862 
     | 
    
         
            +
                        
         
     | 
| 
      
 1863 
     | 
    
         
            +
            	
         
     | 
| 
      
 1864 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 1865 
     | 
    
         
            +
                
         
     | 
| 
      
 1866 
     | 
    
         
            +
            </td><td valign="top" class="gpromo" width="34"><img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="34" height="1" alt="" border="0" vspace="0" hspace="0"></td><td valign="top" width="126">
         
     | 
| 
      
 1867 
     | 
    
         
            +
                
         
     | 
| 
      
 1868 
     | 
    
         
            +
                    <div class="promobottombg">
         
     | 
| 
      
 1869 
     | 
    
         
            +
                    
         
     | 
| 
      
 1870 
     | 
    
         
            +
            	
         
     | 
| 
      
 1871 
     | 
    
         
            +
                        
         
     | 
| 
      
 1872 
     | 
    
         
            +
                        
         
     | 
| 
      
 1873 
     | 
    
         
            +
            		
         
     | 
| 
      
 1874 
     | 
    
         
            +
                        
         
     | 
| 
      
 1875 
     | 
    
         
            +
                        
         
     | 
| 
      
 1876 
     | 
    
         
            +
            	<div class="mvb">
         
     | 
| 
      
 1877 
     | 
    
         
            +
            		<a href="/1/hi/england/8446458.stm"><img src="http://newsimg.bbc.co.uk/media/images/47060000/jpg/_47060470_syedandchristian_bbc.jpg" align="" width="126" height="71" alt="Eastenders characters Christian and Syed" border="0" vspace="0" hspace="0"></a>
         
     | 
| 
      
 1878 
     | 
    
         
            +
            		
         
     | 
| 
      
 1879 
     | 
    
         
            +
            		
         
     | 
| 
      
 1880 
     | 
    
         
            +
            		
         
     | 
| 
      
 1881 
     | 
    
         
            +
            	
         
     | 
| 
      
 1882 
     | 
    
         
            +
            		<a class="shl" href="/1/hi/england/8446458.stm">Kicked out</a>
         
     | 
| 
      
 1883 
     | 
    
         
            +
            		
         
     | 
| 
      
 1884 
     | 
    
         
            +
            			<br />
         
     | 
| 
      
 1885 
     | 
    
         
            +
            		
         
     | 
| 
      
 1886 
     | 
    
         
            +
            	
         
     | 
| 
      
 1887 
     | 
    
         
            +
             
     | 
| 
      
 1888 
     | 
    
         
            +
             
     | 
| 
      
 1889 
     | 
    
         
            +
            		
         
     | 
| 
      
 1890 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 1891 
     | 
    
         
            +
            	
         
     | 
| 
      
 1892 
     | 
    
         
            +
            	<div class="o">
         
     | 
| 
      
 1893 
     | 
    
         
            +
            	
         
     | 
| 
      
 1894 
     | 
    
         
            +
            		
         
     | 
| 
      
 1895 
     | 
    
         
            +
            			
         
     | 
| 
      
 1896 
     | 
    
         
            +
            			Gay Muslims made homeless after fleeing marriages
         
     | 
| 
      
 1897 
     | 
    
         
            +
            			
         
     | 
| 
      
 1898 
     | 
    
         
            +
            		
         
     | 
| 
      
 1899 
     | 
    
         
            +
            			
         
     | 
| 
      
 1900 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1901 
     | 
    
         
            +
             
     | 
| 
      
 1902 
     | 
    
         
            +
            	
         
     | 
| 
      
 1903 
     | 
    
         
            +
            	
         
     | 
| 
      
 1904 
     | 
    
         
            +
            	
         
     | 
| 
      
 1905 
     | 
    
         
            +
             
     | 
| 
      
 1906 
     | 
    
         
            +
             
     | 
| 
      
 1907 
     | 
    
         
            +
             
     | 
| 
      
 1908 
     | 
    
         
            +
                        
         
     | 
| 
      
 1909 
     | 
    
         
            +
                            
         
     | 
| 
      
 1910 
     | 
    
         
            +
                                
         
     | 
| 
      
 1911 
     | 
    
         
            +
                            
         
     | 
| 
      
 1912 
     | 
    
         
            +
                        
         
     | 
| 
      
 1913 
     | 
    
         
            +
            	
         
     | 
| 
      
 1914 
     | 
    
         
            +
            	</div>
         
     | 
| 
      
 1915 
     | 
    
         
            +
                
         
     | 
| 
      
 1916 
     | 
    
         
            +
            </td>
         
     | 
| 
      
 1917 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 1918 
     | 
    
         
            +
              </table>
         
     | 
| 
      
 1919 
     | 
    
         
            +
             
     | 
| 
      
 1920 
     | 
    
         
            +
            </td><td valign="top" class="gpromo" width="10"><img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="10" height="1" alt="" border="0" vspace="0" hspace="0"></td>
         
     | 
| 
      
 1921 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 1922 
     | 
    
         
            +
              </table>
         
     | 
| 
      
 1923 
     | 
    
         
            +
             
     | 
| 
      
 1924 
     | 
    
         
            +
                  <img src="http://newsimg.bbc.co.uk/shared/img/o.gif" width="466" height="20" alt="" border="0">
         
     | 
| 
      
 1925 
     | 
    
         
            +
                
         
     | 
| 
      
 1926 
     | 
    
         
            +
             
     | 
| 
      
 1927 
     | 
    
         
            +
                
         
     | 
| 
      
 1928 
     | 
    
         
            +
                    
         
     | 
| 
      
 1929 
     | 
    
         
            +
                    
         
     | 
| 
      
 1930 
     | 
    
         
            +
            	
         
     | 
| 
      
 1931 
     | 
    
         
            +
                        
         
     | 
| 
      
 1932 
     | 
    
         
            +
                        
         
     | 
| 
      
 1933 
     | 
    
         
            +
            		
         
     | 
| 
      
 1934 
     | 
    
         
            +
                        
         
     | 
| 
      
 1935 
     | 
    
         
            +
                        
         
     | 
| 
      
 1936 
     | 
    
         
            +
            	
         
     | 
| 
      
 1937 
     | 
    
         
            +
             
     | 
| 
      
 1938 
     | 
    
         
            +
            <!-- S BO -->
         
     | 
| 
      
 1939 
     | 
    
         
            +
            	<!-- S IINC --><script language="JavaScript">
         
     | 
| 
      
 1940 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 1941 
     | 
    
         
            +
             
     | 
| 
      
 1942 
     | 
    
         
            +
            function randomLiveStats(){
         
     | 
| 
      
 1943 
     | 
    
         
            +
            var liveStatsFacts=new Array();
         
     | 
| 
      
 1944 
     | 
    
         
            +
             
     | 
| 
      
 1945 
     | 
    
         
            +
            liveStatsFacts[0]="The most read story in the UK is: <a href=http://news.bbc.co.uk/1/hi/uk/8450603.stm?lsf>Afghan bomb kills Mirror reporter</a>";
         
     | 
| 
      
 1946 
     | 
    
         
            +
            liveStatsFacts[1]="The most read story in Africa is: <a href=http://news.bbc.co.uk/1/hi/technology/8448389.stm?lsf>France considers Google tax plan</a>";
         
     | 
| 
      
 1947 
     | 
    
         
            +
            liveStatsFacts[2]="The most read story in Europe is: <a href=http://news.bbc.co.uk/1/hi/business/8451056.stm?lsf>Chavez warns price 'speculators'</a>";
         
     | 
| 
      
 1948 
     | 
    
         
            +
            liveStatsFacts[3]="The most read story in North America is: <a href=http://news.bbc.co.uk/1/hi/world/middle_east/8451085.stm?lsf>Israel to construct Egypt barrier</a>";
         
     | 
| 
      
 1949 
     | 
    
         
            +
            liveStatsFacts[4]="The most read story in Australasia is: <a href=http://news.bbc.co.uk/1/hi/world/middle_east/8451085.stm?lsf>Israel to construct Egypt barrier</a>";
         
     | 
| 
      
 1950 
     | 
    
         
            +
            liveStatsFacts[5]="The most shared story right now is: <a href=http://news.bbc.co.uk/1/hi/health/8449288.stm?lsf>Why light can worsen migraines </a>";
         
     | 
| 
      
 1951 
     | 
    
         
            +
            liveStatsFacts[6]="<a href=/1/shared/bsp/hi/live_stats/html/map.stm?lsf>Traffic to this site is currently 11% below normal</a>";
         
     | 
| 
      
 1952 
     | 
    
         
            +
            liveStatsFacts[7]="<a href=/1/shared/bsp/hi/live_stats/html/map.stm?lsf>6,386 pages were read in the last minute.</a>";
         
     | 
| 
      
 1953 
     | 
    
         
            +
            liveStatsFacts[8]="<a href=/1/shared/bsp/hi/live_stats/html/map.stm?lsf>21,657 people are reading stories on the site right now.</a>";
         
     | 
| 
      
 1954 
     | 
    
         
            +
             
     | 
| 
      
 1955 
     | 
    
         
            +
            //document.write('<li class="footermostpop" style="-webkit-text-size-adjust: none">' + liveStatsFacts[Math.floor(Math.random()*liveStatsFacts.length)] + '</li>');
         
     | 
| 
      
 1956 
     | 
    
         
            +
            document.write('<div class="mostpopular"><span class="now"><a href="/1/shared/bsp/hi/live_stats/html/map.stm?lsf2">Most Popular Now</a></span><p class="section">' + liveStatsFacts[Math.floor(Math.random()*liveStatsFacts.length)] + '</p><div class="clear"></div></div>');
         
     | 
| 
      
 1957 
     | 
    
         
            +
            }
         
     | 
| 
      
 1958 
     | 
    
         
            +
            randomLiveStats();
         
     | 
| 
      
 1959 
     | 
    
         
            +
            //-->
         
     | 
| 
      
 1960 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 1961 
     | 
    
         
            +
             
     | 
| 
      
 1962 
     | 
    
         
            +
            <noscript>
         
     | 
| 
      
 1963 
     | 
    
         
            +
            <div class="mostpopular"><span class="now"><a href="/1/shared/bsp/hi/live_stats/html/map.stm">Most Popular Now</a></span><p class="section"><a href="/1/shared/bsp/hi/live_stats/html/map.stm" class="now">Most Popular Now</a> | <a href=/1/shared/bsp/hi/live_stats/html/map.stm?lsf>21,657 people are reading stories on the site right now.</a></p><div class="clear"></div></div>
         
     | 
| 
      
 1964 
     | 
    
         
            +
            </noscript>
         
     | 
| 
      
 1965 
     | 
    
         
            +
             
     | 
| 
      
 1966 
     | 
    
         
            +
             
     | 
| 
      
 1967 
     | 
    
         
            +
             
     | 
| 
      
 1968 
     | 
    
         
            +
             
     | 
| 
      
 1969 
     | 
    
         
            +
            <!-- E IINC -->
         
     | 
| 
      
 1970 
     | 
    
         
            +
             
     | 
| 
      
 1971 
     | 
    
         
            +
            <!-- E BO -->
         
     | 
| 
      
 1972 
     | 
    
         
            +
             
     | 
| 
      
 1973 
     | 
    
         
            +
             
     | 
| 
      
 1974 
     | 
    
         
            +
             
     | 
| 
      
 1975 
     | 
    
         
            +
                        
         
     | 
| 
      
 1976 
     | 
    
         
            +
                            
         
     | 
| 
      
 1977 
     | 
    
         
            +
                                
         
     | 
| 
      
 1978 
     | 
    
         
            +
                            
         
     | 
| 
      
 1979 
     | 
    
         
            +
                        
         
     | 
| 
      
 1980 
     | 
    
         
            +
            	
         
     | 
| 
      
 1981 
     | 
    
         
            +
            	
         
     | 
| 
      
 1982 
     | 
    
         
            +
                
         
     | 
| 
      
 1983 
     | 
    
         
            +
            <img src="http://newsimg.bbc.co.uk/shared/img/ffffff.gif" width="466" height="20" alt="" border="0"><br />
         
     | 
| 
      
 1984 
     | 
    
         
            +
             
     | 
| 
      
 1985 
     | 
    
         
            +
            </div> </td></tr> 
         
     | 
| 
      
 1986 
     | 
    
         
            +
                        </table>
         
     | 
| 
      
 1987 
     | 
    
         
            +
                    </td>
         
     | 
| 
      
 1988 
     | 
    
         
            +
                </tr>
         
     | 
| 
      
 1989 
     | 
    
         
            +
            </table>
         
     | 
| 
      
 1990 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 1991 
     | 
    
         
            +
             
     | 
| 
      
 1992 
     | 
    
         
            +
            	
         
     | 
| 
      
 1993 
     | 
    
         
            +
                    <!-- v4 ukfs services /shared/ -->
         
     | 
| 
      
 1994 
     | 
    
         
            +
             
     | 
| 
      
 1995 
     | 
    
         
            +
             
     | 
| 
      
 1996 
     | 
    
         
            +
             
     | 
| 
      
 1997 
     | 
    
         
            +
            <div class="blq-toplink"><a href="#top"><span>Skip to top</span></a></div>
         
     | 
| 
      
 1998 
     | 
    
         
            +
            <div class="servicev4 ukfs_services">
         
     | 
| 
      
 1999 
     | 
    
         
            +
            	<h4>PRODUCTS & SERVICES</h4>
         
     | 
| 
      
 2000 
     | 
    
         
            +
            	<ul>
         
     | 
| 
      
 2001 
     | 
    
         
            +
            		<li class="emailnews"><a href="http://newsvote.bbc.co.uk/go/news/int/story/services/-/email/news">E-mail news</a></li>
         
     | 
| 
      
 2002 
     | 
    
         
            +
            		<li class="mobiles"><a href="http://news.bbc.co.uk/go/news/int/story/services/-/1/hi/help/6207366.stm">Mobiles</a></li>
         
     | 
| 
      
 2003 
     | 
    
         
            +
            		<li class="alerts"><a href="http://news.bbc.co.uk/go/news/int/story/services/-/1/hi/help/4735697.stm">Alerts</a></li>
         
     | 
| 
      
 2004 
     | 
    
         
            +
            		<li class="newsfeeds"><a href="http://news.bbc.co.uk/go/news/int/story/services/-/1/hi/help/3223484.stm">News feeds</a></li>
         
     | 
| 
      
 2005 
     | 
    
         
            +
            		<li class="itv"><a href="http://news.bbc.co.uk/go/news/int/story/services/-/1/hi/help/5092618.stm">Interactive TV</a></li>
         
     | 
| 
      
 2006 
     | 
    
         
            +
            		<li class="podcast"><a href="http://www.bbc.co.uk/radio/podcasts/directory/genre/newscurrentaffairs/">Podcasts</a></li>
         
     | 
| 
      
 2007 
     | 
    
         
            +
            	</ul>
         
     | 
| 
      
 2008 
     | 
    
         
            +
            	<div class="clear"></div>
         
     | 
| 
      
 2009 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 2010 
     | 
    
         
            +
             
     | 
| 
      
 2011 
     | 
    
         
            +
                    
         
     | 
| 
      
 2012 
     | 
    
         
            +
                    
         
     | 
| 
      
 2013 
     | 
    
         
            +
             
     | 
| 
      
 2014 
     | 
    
         
            +
             
     | 
| 
      
 2015 
     | 
    
         
            +
             
     | 
| 
      
 2016 
     | 
    
         
            +
            <div id="bbccomWebBug" class="bbccomWebBug"></div>
         
     | 
| 
      
 2017 
     | 
    
         
            +
             
     | 
| 
      
 2018 
     | 
    
         
            +
             
     | 
| 
      
 2019 
     | 
    
         
            +
             
     | 
| 
      
 2020 
     | 
    
         
            +
             
     | 
| 
      
 2021 
     | 
    
         
            +
             
     | 
| 
      
 2022 
     | 
    
         
            +
             
     | 
| 
      
 2023 
     | 
    
         
            +
             
     | 
| 
      
 2024 
     | 
    
         
            +
             
     | 
| 
      
 2025 
     | 
    
         
            +
             
     | 
| 
      
 2026 
     | 
    
         
            +
             
     | 
| 
      
 2027 
     | 
    
         
            +
             
     | 
| 
      
 2028 
     | 
    
         
            +
             
     | 
| 
      
 2029 
     | 
    
         
            +
             
     | 
| 
      
 2030 
     | 
    
         
            +
            <!-- blq_web_service On -->
         
     | 
| 
      
 2031 
     | 
    
         
            +
            	
         
     | 
| 
      
 2032 
     | 
    
         
            +
            		
         
     | 
| 
      
 2033 
     | 
    
         
            +
            	
         
     | 
| 
      
 2034 
     | 
    
         
            +
            	
         
     | 
| 
      
 2035 
     | 
    
         
            +
            		
         
     | 
| 
      
 2036 
     | 
    
         
            +
            		
         
     | 
| 
      
 2037 
     | 
    
         
            +
            	
         
     | 
| 
      
 2038 
     | 
    
         
            +
            	
         
     | 
| 
      
 2039 
     | 
    
         
            +
             
     | 
| 
      
 2040 
     | 
    
         
            +
             
     | 
| 
      
 2041 
     | 
    
         
            +
             
     | 
| 
      
 2042 
     | 
    
         
            +
             
     | 
| 
      
 2043 
     | 
    
         
            +
             
     | 
| 
      
 2044 
     | 
    
         
            +
             
     | 
| 
      
 2045 
     | 
    
         
            +
             
     | 
| 
      
 2046 
     | 
    
         
            +
             
     | 
| 
      
 2047 
     | 
    
         
            +
             
     | 
| 
      
 2048 
     | 
    
         
            +
             
     | 
| 
      
 2049 
     | 
    
         
            +
            	
         
     | 
| 
      
 2050 
     | 
    
         
            +
             
     | 
| 
      
 2051 
     | 
    
         
            +
             
     | 
| 
      
 2052 
     | 
    
         
            +
             
     | 
| 
      
 2053 
     | 
    
         
            +
             
     | 
| 
      
 2054 
     | 
    
         
            +
             
     | 
| 
      
 2055 
     | 
    
         
            +
             
     | 
| 
      
 2056 
     | 
    
         
            +
             
     | 
| 
      
 2057 
     | 
    
         
            +
            <!-- Barlesque r61 -->
         
     | 
| 
      
 2058 
     | 
    
         
            +
             
     | 
| 
      
 2059 
     | 
    
         
            +
             
     | 
| 
      
 2060 
     | 
    
         
            +
             
     | 
| 
      
 2061 
     | 
    
         
            +
             
     | 
| 
      
 2062 
     | 
    
         
            +
             
     | 
| 
      
 2063 
     | 
    
         
            +
            </div><div id="blq-mast" class="blq-rst">        
         
     | 
| 
      
 2064 
     | 
    
         
            +
            <form method="get" action="http://search.bbc.co.uk/search" accept-charset="utf-8"><fieldset><input type="hidden" name="uri" value="/1/hi/england/8446458.stm" /><input type="hidden" name="go" value="toolbar" /><label for="blq-search" class="blq-hide">Search term:</label> <input id="blq-search" type="text" name="q" value="" accesskey="4" /><input id="blq-search-btn" type="submit" value="Search" /></fieldset></form><h2 id="blq-nav-btn"><a href="http://www.bbc.co.uk/a-z/" class="blq-orange blq-nogo">Explore the BBC</a></h2><script type="text/javascript">blq.exploreReady();</script></div><div id="blq-nav" class="blq-orange blq-rst"><div id="blq-nav-links" class="blq-clearfix" lang="en-GB"><div id="blq-nav-links-inner"><p id="blq-home"><a href="http://www.bbc.co.uk/">Home</a></p><h3 class="blq-hide">Popular links</h3><ul id="blq-pop"><li><a href="http://www.bbc.co.uk/doctorwho/">Doctor Who</a></li>
         
     | 
| 
      
 2065 
     | 
    
         
            +
            <li><a href="http://www.bbc.co.uk/comedy/extra/">Comedy Extra</a></li>
         
     | 
| 
      
 2066 
     | 
    
         
            +
            <li class="blq-last"><a href="http://www.bbc.co.uk/eastenders/">EastEnders</a></li></ul><h3 class="blq-hide">A to F</h3><ol class="blq-nav-sub blq-first"><li><a href="http://www.bbc.co.uk/iplayer/">BBC iPlayer</a></li><li><a href="http://www.bbc.co.uk/cbbc/">CBBC</a></li><li><a href="http://www.bbc.co.uk/cbeebies/">CBeebies</a></li><li><a href="http://www.bbc.co.uk/food/">Food</a></li></ol><h3 class="blq-hide">H to L</h3><ol class="blq-nav-sub"><li><a href="http://www.bbc.co.uk/health/">Health & Parenting</a></li><li><a href="http://www.bbc.co.uk/history/">History</a></li><li><a href="http://www.bbc.co.uk/learning/">Learning</a></li><li><a href="http://www.bbc.co.uk/local/">Local & Nations</a></li></ol><h3 class="blq-hide">M to Sc</h3><ol class="blq-nav-sub"><li><a href="http://www.bbc.co.uk/music/">Music</a></li><li><a href="http://www.bbc.co.uk/news/">News</a></li><li><a href="http://www.bbc.co.uk/radio/">Radio</a></li><li><a href="http://www.bbc.co.uk/sn/">Science & Nature</a></li></ol><h3 class="blq-hide">Sp to W</h3><ol class="blq-nav-sub"><li><a href="http://www.bbc.co.uk/news/sport/">Sport</a></li><li><a href="http://www.bbc.co.uk/tv/">TV</a></li><li><a href="http://www.bbc.co.uk/weather/">Weather</a></li></ol><p id="blq-more"><a href="http://www.bbc.co.uk/a-z/">A whole lot more <span class="blq-hide">from the BBC</span></a></p></div><div id="blq-nav-foot"><div><p class="blq-hide"><a href="#blq-nav-links-inner">Back to start of navigation</a></p></div></div></div></div><div id="blq-foot" lang="en-gb" class="blq-rst blq-clearfix"><div id="blq-footlinks"><h2 class="blq-hide">Site links</h2><ul id="blq-sitelinks"> <li><a href="http://www.bbc.co.uk/news/1/hi/help/3281815.stm">News Sources</a></li> <li><a href="http://www.bbc.co.uk/news/1/hi/help/default.stm">About BBC News</a></li></ul><h2 class="blq-hide">BBC links</h2><ul id="blq-bbclinks"> <li><a href="http://www.bbc.co.uk/info/">About the BBC</a></li> <li><a href="http://www.bbc.co.uk/help/">BBC Help</a></li> <li><a href="http://www.bbc.co.uk/feedback/">Contact Us</a></li> <li><a href="http://www.bbc.co.uk/accessibility/">Accessibility Help</a></li> <li><a href="http://www.bbc.co.uk/terms/">Terms of Use</a></li> <li><a href="http://www.bbc.co.uk/jobs/">Jobs</a></li> <li><a href="http://www.bbc.co.uk/privacy/">Privacy & Cookies</a></li></ul></div><div class="blqFooterAdContainer"><!-- Ad --></div><p id="blq-copy"><img src="http://www.bbc.co.uk/includes/blq/resources/gvl/r61/img/footer_blocks_grey.gif" width="68" height="21" alt="BBC" /> © MMX</p><p id="blq-disclaim"><a href="http://www.bbc.co.uk/help/web/links/">The BBC is not responsible for the content of external internet sites.</a></p></div><div id="blq-obit"><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></div></div></div>
         
     | 
| 
      
 2067 
     | 
    
         
            +
             
     | 
| 
      
 2068 
     | 
    
         
            +
             
     | 
| 
      
 2069 
     | 
    
         
            +
             
     | 
| 
      
 2070 
     | 
    
         
            +
             
     | 
| 
      
 2071 
     | 
    
         
            +
             
     | 
| 
      
 2072 
     | 
    
         
            +
            	
         
     | 
| 
      
 2073 
     | 
    
         
            +
            	
         
     | 
| 
      
 2074 
     | 
    
         
            +
            	
         
     | 
| 
      
 2075 
     | 
    
         
            +
            	
         
     | 
| 
      
 2076 
     | 
    
         
            +
            		
         
     | 
| 
      
 2077 
     | 
    
         
            +
            	
         
     | 
| 
      
 2078 
     | 
    
         
            +
             
     | 
| 
      
 2079 
     | 
    
         
            +
             
     | 
| 
      
 2080 
     | 
    
         
            +
             
     | 
| 
      
 2081 
     | 
    
         
            +
             
     | 
| 
      
 2082 
     | 
    
         
            +
            <img src="/sol/shared/img/timezone/z.zzz" width="0" height="0" alt="" />
         
     | 
| 
      
 2083 
     | 
    
         
            +
             
     | 
| 
      
 2084 
     | 
    
         
            +
             
     | 
| 
      
 2085 
     | 
    
         
            +
             
     | 
| 
      
 2086 
     | 
    
         
            +
             
     | 
| 
      
 2087 
     | 
    
         
            +
            	
         
     | 
| 
      
 2088 
     | 
    
         
            +
            		<map name="world_map" id="world_map">
         
     | 
| 
      
 2089 
     | 
    
         
            +
            		<area alt="Americas" coords="0,0,34,53" href="/1/hi/world/americas/default.stm" />
         
     | 
| 
      
 2090 
     | 
    
         
            +
            		<area alt="Africa" shape="poly" coords="37,25,37,51,52,51,52,33,48,33,48,31,40,31" href="/1/hi/world/africa/default.stm" />
         
     | 
| 
      
 2091 
     | 
    
         
            +
            		<area alt="Europe" shape="poly" coords="35,2,66,2,66,12,56,12,56,20,37,20" href="/1/hi/world/europe/default.stm" />
         
     | 
| 
      
 2092 
     | 
    
         
            +
            		<area alt="Middle East" shape="poly" coords="44,24,57,24,58,50,55,50,55,31,52,28,44,28" href="/1/hi/world/middle_east/default.stm" />
         
     | 
| 
      
 2093 
     | 
    
         
            +
            		<area alt="South Asia" coords="60,24,67,49" href="/1/hi/world/south_asia/default.stm" />
         
     | 
| 
      
 2094 
     | 
    
         
            +
            		<area alt="Asia Pacific" shape="poly" coords="71,2,89,3,88,51,69,51,69,20,62,20,62,16,71,16" href="/1/hi/world/asia-pacific/default.stm" />
         
     | 
| 
      
 2095 
     | 
    
         
            +
            		</map>
         
     | 
| 
      
 2096 
     | 
    
         
            +
            	
         
     | 
| 
      
 2097 
     | 
    
         
            +
             
     | 
| 
      
 2098 
     | 
    
         
            +
             
     | 
| 
      
 2099 
     | 
    
         
            +
             
     | 
| 
      
 2100 
     | 
    
         
            +
             
     | 
| 
      
 2101 
     | 
    
         
            +
            <!-- 
         
     | 
| 
      
 2102 
     | 
    
         
            +
            Site_To_Serve:news
         
     | 
| 
      
 2103 
     | 
    
         
            +
            Section_Path:/england 
         
     | 
| 
      
 2104 
     | 
    
         
            +
            blq_web_service:on
         
     | 
| 
      
 2105 
     | 
    
         
            +
            blq_webservice_release:r61
         
     | 
| 
      
 2106 
     | 
    
         
            +
            blq_webservice_variant:journalism
         
     | 
| 
      
 2107 
     | 
    
         
            +
            blq_cache:cached/
         
     | 
| 
      
 2108 
     | 
    
         
            +
            blq_host:wwwimg.bbc.co.uk
         
     | 
| 
      
 2109 
     | 
    
         
            +
            blq_low_graphics_url:text_only.stm
         
     | 
| 
      
 2110 
     | 
    
         
            +
            blq_language:en-gb
         
     | 
| 
      
 2111 
     | 
    
         
            +
            blq_footer_link_url_1:/news/1/hi/help/3281815.stm
         
     | 
| 
      
 2112 
     | 
    
         
            +
            blq_footer_link_url_2:/news/1/hi/help/default.stm
         
     | 
| 
      
 2113 
     | 
    
         
            +
            blq_footer_link_url_3:(none)
         
     | 
| 
      
 2114 
     | 
    
         
            +
            blq_footer_link_url_4:(none)
         
     | 
| 
      
 2115 
     | 
    
         
            +
            blq_footer_link_text_1:News%20Sources
         
     | 
| 
      
 2116 
     | 
    
         
            +
            blq_footer_link_text_2:About%20BBC%20News
         
     | 
| 
      
 2117 
     | 
    
         
            +
            blq_footer_link_text_3:(none)
         
     | 
| 
      
 2118 
     | 
    
         
            +
            blq_footer_link_text_4:(none)
         
     | 
| 
      
 2119 
     | 
    
         
            +
            blq_footer_color:(none)
         
     | 
| 
      
 2120 
     | 
    
         
            +
            blq_core_cache:3
         
     | 
| 
      
 2121 
     | 
    
         
            +
             
     | 
| 
      
 2122 
     | 
    
         
            +
             
     | 
| 
      
 2123 
     | 
    
         
            +
            -->
         
     | 
| 
      
 2124 
     | 
    
         
            +
             
     | 
| 
      
 2125 
     | 
    
         
            +
             
     | 
| 
      
 2126 
     | 
    
         
            +
                    <br />
         
     | 
| 
      
 2127 
     | 
    
         
            +
            	
         
     | 
| 
      
 2128 
     | 
    
         
            +
             
     | 
| 
      
 2129 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 2130 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 2131 
     | 
    
         
            +
            </html>
         
     |