// JavaScript Document
  <!--
  if (!early_exit)
  {
  var wizard_brand			= "reuters";
  var webfeed_heading 			= "";
  var width 				= "200";
  var numberofarticles 			=  global_article.length;
  var cluster_border 			= "";
  var time_display 			= "No";
  var cell_spacing 			= "";
  var cell_padding 			= "0";
  var time 					=  new Array(global_article.length);
 
  
  // Start loop for articles
  for (var counter=0; counter < numberofarticles; counter++)
    {
	
	if ((counter == (global_article.length - 1)) && moreover_text == 1) 
      {  
      time_display = "No";
      }
	
	// Print out the headline 
    document.write("<p><a href='"+global_article[counter].url+"'>");
    document.write(global_article[counter].headline_text+"&hellip;</a><br>");
	
    
      // Print out the source
        if ((counter != (global_article.length - 1)) || moreover_text != 1)
        {
		
		document.write("<a href='"+global_article[counter].document_url+"' + class='source'>");
        document.write(global_article[counter].source+"</a></p>");
        
		}

    

    } // End of article loop
  



  // ************************************************************************************
  // This code is subject to the copyright and warranty restrictions detailed at 
  // http://www.moreover.com/wizard_copyright.html
  // Copyright 2004 Moreover Technologies. All rights reserved.
  // *************************************************************************************
  } 
  // -->
