The leading source for credible citizen reporting

Report Your News
Take the tour...

Secret Talks Progress on Illegal Iranian Nuclear Plant

Washington : DC : USA | about 1 month ago  
Views: 14
  • A recent photograph of suspected uranium-enrichment facility near Qom
    A recent photograph of suspected uranium-enrichment facility near Qom
    Source: Reuters
  • IAEA Director General ElBaradei arrives in Tehran
    IAEA Director General ElBaradei arrives in Tehran
    Source: Reuters
  • IAEA Director General ElBaradei arrives in Tehran
    IAEA Director General ElBaradei arrives in Tehran
    Source: Reuters
  • Satellite photo of what is believed to be a uranium-enrichment facility near Qom
    Satellite photo of what is believed to be a uranium-enrichment ...
    Source: Reuters
A recent photograph of suspected uranium-enrichment facility near Qom

Tuesday, October 20, 2009




AFP/HO/File – A handout picture released through the website of Iran's presidential office shows Iranian President …

By Nasra Ismail for the BBC's Biodun Iginla

--Mon Oct 19, 4:00 pm ET President Barack Obama has a personal stake in the outcome of Monday's meeting in Vienna between Western and Iranian nuclear experts on the future of Iran's stockpile of low-enriched uranium. That's because, Administration sources tell me, Obama personally weighed in three times during secret, multiparty negotiations with the Iranians over the last four months - in what has become not just a test of Iran's nuclear intentions but also a test of Obama's effort to limit Iran's nuclear ambitions through a combination of sanctions, threats and incentives.

The backroom talks began in June, when Iranian officials told the International Atomic Energy Agency their country was running out of fuel for an aging research reactor built for the Shah in 1967 by American technicians. Iran sought the IAEA's help in buying more of the specially manufactured plates of enriched uranium used in the reactor to produce isotopes for cancer treatment, X-rays and insecticides.

The IAEA, in turn, discussed the request with the U.S. (See pictures of Iran's presidential election and its turbulent aftermath.) "We very quickly saw an opening here," says a senior Administration official involved in the multiparty negotiations that ensued, speaking on condition of anonymity. The U.S. realized it could arrange for the manufacture of the specialized plates from an unorthodox source: the stash of low-enriched uranium Iran has produced in violation of U.N. Security Council demands at its massive Natanz uranium-enrichment plant over the past several years.

The U.S., Israel and others had estimated that the Iranian stockpile was enough - if Iran kicked out inspectors and repurposed its enrichment facilities to enrich uranium to weapons grade - to produce material for a single atom bomb. So, the idea that Iran might agree to send most of it abroad to be turned into harmless plates for the research reactor seemed an opportune way to defuse tensions. In early July, Obama traveled to Moscow, where his top nonproliferation aide, Gary Samore, floated a proposal to the Russians: If Iran would agree to export a supply of LEU to Moscow, the Russians could enrich it to the level needed to power the research reactor, and then the French, who had been brought into the discussions, could turn it into the specialized plates that are used to produce the isotopes.

The plates, which Iran does not have the capacity to turn into weapons-grade uranium, would then be sent back to Tehran. "The Russians immediately said, 'Great idea,' " says the senior Administration official. (See pictures of the world's worst nuclear disasters.) What followed was a careful set of high-level negotiations between Iran, the IAEA, Russia, France and the U.S. to iron out details. In mid-September, Obama called the head of the IAEA, Mohamed ElBaradei to inform him that the U.S. was willing to do the deal. ElBaradei then contacted the Iranian representative at the IAEA, who said he would have to check with his government, the senior Administration official says. Eventually the Iranians contacted ElBaradei to signal a willingness to deal. The Americans wanted to make sure the Iranians weren't going to pull a fast one and persuade the Russians to get the material for the research-reactor fuel from a source other than Iran's own stockpile.

When President Obama met with Russian President Dmitri Medvedev in New York City at the U.N. General Assembly in late September, he pressed the Russian to "confirm at the level of the President that this whole deal hinged on it being Iran providing the fuel," says the senior Administration official. The official says Medvedev agreed. Obama then had a further phone conversation with ElBaradei late in September to confirm the details of the deal, which was finally announced at the Oct. 1 Geneva talks between Iran and the key Western powers, Russia and China. At those talks, U.S. negotiator, William Burns, had a one-on-one conversation with his Iranian counterpart to confirm the amount of uranium involved in the deal, and they agreed to the Oct. 19 meeting to determine details of the transfer.

Despite the top-level diplomatic work, U.S. officials were not particularly optimistic ahead of Monday's meeting in Vienna. After years of failed talks they were prepared for stalling by Iran or a breakdown over details. Sunday's suicide bombing that killed some senior Revolutionary Guards officers, and which many in Tehran blame on a U.S. covert program to destabilize the regime through support for separatist groups, could cast a shadow over the nuclear talks. But both sides have reasons to seek progress: if the deal were to go forward, the U.S. would have succeeded in securing most of Iran's existing stockpile against weaponization. Iran, for its part, could see the deal as legitimizing their enrichment of uranium in violation of U.N. demands. In the best case, officials said, sealing details of the reactor agreement would raise a hope of further progress - which is more than there has been in some time. Related Searches:

(function() { /** * YUI function to get all elements by class name * getElementsByClass */ function getElementsByClass(className, tag, root) { tag = tag || '*'; root = (typeof root == 'string') ? document.getElementById(root) : root || document; var nodes = [], elements = root.getElementsByTagName(tag), re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)'); for (var i = 0, len = elements.length; i < len; ++i) { if ( re.test(elements[i].className) ) { nodes[nodes.length] = elements[i]; } } return nodes; } /** * This code displays the expand button as the page loads. This prevents any lag in displaying * the button if the page takes a long time to load. If the user clicks the button before the page * loads then we just show the full story without animation. Thus, preventing the full implementation * from loading. */ var story = document.getElementById('yn-story'); var related = document.getElementById('yn-story-related-media'); var expandCookie = '0'; if ( // make sure read-more-toggle flag exists (story && story.className.indexOf('read-more-toggle') != -1) && // if user preference is 0 then collapse story expandCookie == '0' && // make sure hash is not set window.location.hash!='#full' ) { var buttonHeight = 18; var defaultHeight = 406; var heightLimit = 200; var host = document.location.host; var path = document.location.pathname; var bd = getElementsByClass('bd','div',story)[0]; // Figure out min height for story container based on the heights of the related media and primary media containers if (related) { // do height calculations if related height is larger than default minHeight if (related.offsetHeight > defaultHeight) { // if primary exists then use that height, otherwise use related var obj = getElementsByClass('primary-media','div',related)[0]; if (!obj) obj = related; // set height from primary or related container minHeight = parseInt(obj.offsetHeight, 10); // if the minheight is smaller than default, then set it to default if ( (minHeight < defaultHeight) && !document.getElementById('yn-story-main-media') && !document.getElementById('yn-story-minor-media') ) { minHeight = defaultHeight; } } else { minHeight = defaultHeight; } } else { minHeight = defaultHeight; } // add height of buttons to min height minHeight += buttonHeight; // make sure there is enough story to hide if ((bd.offsetHeight - minHeight) > heightLimit) { // set overflow and height bd.style.height = minHeight + "px"; bd.className += " overflow"; story.className += " read-closed"; // add read more expand button var div = document.createElement('div'); div.className = 'read-more read-more-expand'; div.innerHTML = 'Read Full Article'; // we have to handle the case where a user might click the button before our YUI script loads // if so, remove the height and overflow setting then hide the button, also add #full hash to url so // if script eventually is loaded it doesnt recreate the buttons and collapse the story div.onclick = function(ev) { var e = ev || window.event; // show full story bd.style.height = 'auto'; bd.className = bd.className.replace('overflow','expanded'); story.className = story.className.replace('read-closed',''); // hide the toggle button div.className += ' hide'; // disable link follow if (e.preventDefault) { e.preventDefault(); } else { e.returnValue = false; } } // add div to document bd.appendChild(div); } } })();
Related

More...

Posted by BiodunIginla at 3:55 AM Labels: , , ,

  • Print
  • Share:
  • Share
  • Digg
  • Reddit
  • Facebook
  • Stumbleupon

Related Allvoices Contributions

News Stories
 
  • News Source: Miami Herald | about 1 month ago
    Iran hedged Friday on accepting a deal that would transfer most of its low-enriched uranium out of the country to be converted for peaceful uses, saying it wants more time to study the deal and suggesting that it prefers a different approach. The...
  • News Source: The independent | about 1 month ago
    Iran has ignored a deadline to respond to a proposed deal from the UN nuclear watchdog, saying it would give its verdict next week. Tehran until yesterday to sign up to an agreement under which it would send its uranium to Russia and France for...
  • News Source: Al Jazeera | about 1 month ago
    Earlier on Friday, Bernard Kouchner, the French foreign minister, had said indications that Iran would sign up to the deal were "not positive". "I do not know what the results in Vienna today are, but the signs we received [from Iran] this morning...
  • News Source: Christian Science Monitor | about 1 month ago
    It may be playing for better terms, but in wavering on the Iran nuclear deal, it could lay the groundwork for sanctions. Is Iran doing its customary diplomatic haggling – or preparing to slam the door on the international community?...But by...
  • News Source: Christian Science Monitor | about 1 month ago
    Tehran asked for more time, but some worry that it's backing away from what had been termed a possible breakthrough for easing concerns about its nuclear program. Iran Friday backed away from approving a draft deal that would see most of its nuclear...
  • News Source: San Francisco Chronicle | about 1 month ago
    The Obama administration expressed mild disappointment Friday that Iran withheld a decision on whether to accept a U.N.-coordinated plan that could ease fears about Iran's potential for making a nuclear weapon. More News The U.S., along with Russia...
Blogs
 >
  • Blog Source: www.washingtonexaminer.com
    The head of the UN nuclear agency says talks that could persuade Iran to move most of its enriched uranium out of the country are off to a.
  • Blog Source: truthiscontagious.com
    Talks between Iran and world powers on a uranium enrichment deal are "off to a good start", the head of the United Nations' nuclear watchdog has said. Russia, France and the US were at the IAEA meeting in Vienna. Under a proposed deal, ...
  • Blog Source: secretaryclinton.wordpress.com
    It reported that Iran's supply of low-enriched uranium — the potential feedstock for nuclear bombs — appears to have certain “impurities” that “could cause centrifuges to fail” if the Iranians try to boost it to weapons grade. ...
  • Blog Source: www.stopnato.org
    Malaysia Star Iran pulls back from deal on uranium enrichment Telegraph.co.uk Iran's negotiators have toughened their stance on the nuclear programme, signalling that Tehran will refuse to go ahead with an agreement to hand over 75 per ...
  • Blog Source: www.worthychristianforums.com
    WN: Iran nuclear agency defiant over uranium enrichment - Ha'aret : Iran will further enrich uranium itself if nuclear talks fail with the UN watchdog, Russia, France and the United States in Vienna on Monday, an Iranian official ...
  • Blog Source: enduringamerica.com
    it is time to add another variable to Israel's threat analyses on possibility or impossibility of an Israeli attack on Iran: Israel's international prestige….Tel Aviv cannot possibly afford to further damage its international image in ... Second:
Images
 >
 
Videos
 >
 
Reported by BiodunIginla
Report Your News Got a similar story?
Add it to the network!

Or add related content to this report

Cell phones Cell phones use report code: @4435425

Most Popular Reports

Related Tweets

Related Allvoices Reports

Related People

Contributions

Help and Accounts


Use of this site is governed by our Terms of Use Agreement and Privacy Policy.

© Allvoices, Inc 2008-2009. All rights reserved.