// make sure the optional variables are set (FIX: add all variables to this
// with reasonable defaults?)
if ( aa_new_window == null ) {
 var aa_new_window = false;
}

// which browser are we: netscape 4 dies with
// in-line styles and javascript combined
var aa_not_nscape = navigator.appName.indexOf("Netscape") == -1;

//
// fill the array 
//
var list = new Array();
list[0] =
  { url:'http://allafrica.com/stories/200911181020.html',
    slug:'Somalia:',
    headline:'Ethiopia Denies Involvement in Capture of Oil-Rich Region'
  };
list[1] =
  { url:'http://allafrica.com/stories/200911190437.html',
    slug:'Ethiopia:',
    headline:'UK Grants 4 Billion Birr Aid to Country, Political Arena a Concern - Minister'
  };
list[2] =
  { url:'http://allafrica.com/stories/200911180441.html',
    slug:'Ethiopia:',
    headline:'Oxfam\'s Agricultural Scaling-Up Program Appropriate, Timely - Moard'
  };
list[3] =
  { url:'http://allafrica.com/stories/200911180216.html',
    slug:'Uganda:',
    headline:'Museveni Meets Meles Zenawi in Addis'
  };
list[4] =
  { url:'http://allafrica.com/stories/200911171005.html',
    slug:'Ethiopia:',
    headline:'How Country Can Tackle Famine'
  };
list[5] =
  { url:'http://allafrica.com/stories/200911170728.html',
    slug:'Ethiopia:',
    headline:'Koica Plans to Boost Its Development Assistance'
  };
list[6] =
  { url:'http://allafrica.com/stories/200911170727.html',
    slug:'Ethiopia:',
    headline:'Centre Stresses Media Sensitivity in Language, Image Use of Disabled'
  };
list[7] =
  { url:'http://allafrica.com/stories/200911170726.html',
    slug:'Ethiopia:',
    headline:'Moard, Oxfam GB Host National Agriculture Learning Event'
  };
list[8] =
  { url:'http://allafrica.com/stories/200911170567.html',
    slug:'Africa:',
    headline:'Opportunity to Lease Farming Land'
  };
list[9] =
  { url:'http://allafrica.com/stories/200911120418.html',
    slug:'Ethiopia:',
    headline:'Ogaden Rebels Claim Seizing Govt Military Bases'
  };
list[10] =
  { url:'http://allafrica.com/stories/200911121071.html',
    slug:'Ethiopia:',
    headline:'West Oppresses Country Through Zenawi Support'
  };
list[11] =
  { url:'http://allafrica.com/stories/200911100217.html',
    slug:'East Africa:',
    headline:'Ethiopia, Kenya Address Cross-Border Strife'
  };
list[12] =
  { url:'http://allafrica.com/stories/200911100781.html',
    slug:'Ethiopia:',
    headline:'Ethiopia and the United States  - History, Diplomacy, and Analysis by Getachew Metaferia'
  };
list[13] =
  { url:'http://allafrica.com/stories/200911090632.html',
    slug:'East Africa:',
    headline:'Kenya, Uganda, Ethiopia Get U.S.$452 Million for Roads'
  };
list[14] =
  { url:'http://allafrica.com/stories/200911100216.html',
    slug:'Ethiopia:',
    headline:'African Ministers, Experts to Discuss Progress in Addressing Gender Issues'
  };
list[15] =
  { url:'http://allafrica.com/stories/200911091714.html',
    slug:'Ethiopia:',
    headline:'Mind Your Manners, Please'
  };
list[16] =
  { url:'http://allafrica.com/stories/200911091713.html',
    slug:'Ethiopia:',
    headline:'High Profile Korean Mission On Visit Here'
  };
list[17] =
  { url:'http://allafrica.com/stories/200911091711.html',
    slug:'Ethiopia:',
    headline:'IDRC Honours Prof. Gebissa, Celebrates 40 Years'
  };
list[18] =
  { url:'http://allafrica.com/stories/200911091712.html',
    slug:'Ethiopia:',
    headline:'The Smile and the Slap'
  };
list[19] =
  { url:'http://allafrica.com/stories/200911091709.html',
    slug:'Ethiopia:',
    headline:'\'We Are Bête Israel, Fuga is Derogatory Name Given to Us\' -Member of the Community'
  };
list[20] =
  { url:'http://allafrica.com/stories/200911090830.html',
    slug:'Ethiopia:',
    headline:'Top Economists in Addis to Talk About Crisis'
  };

// open the table
document.write ( '<table bgcolor="' );
document.write ( aa_outside_color );
document.write ( '" ' );
if ( aa_width != null ) {
  document.write ( 'width="' + aa_width + '" ' );
}
document.write ( 'cellspacing="0" cellpadding="1" border="0"><tr><td>' );

document.write ( '<table width="100%" bgcolor="' );
document.write ( aa_stripe_color_1 );
document.write ( '" cellspacing="0" cellpadding="0" border="0">' );
document.write ( "\n" );

// header ifdefing for netscape idiocy to do font stuff
document.write ( '<tr><td><table width="100%" bgcolor="' );
document.write ( aa_outside_color );
document.write ( '" cellspacing="0" cellpadding="4" border="0"><tr><td align="center">' );
if ( aa_not_nscape ) {
document.write ( '<span style="font-family:arial,sans-serif;font-size:12pt;font-weight:bold;color=' + aa_header_color + '">' );
} else {
document.write ( '<font face="arial,sans-serif" point-size="12" color="' + aa_header_color + '"><strong>' );
}
if ( aa_header == null ) {
document.write ( 'Ethiopia' );
} else {
  document.write ( aa_header );
}
if ( aa_not_nscape ) {
document.write ( '</span>' );
} else {
document.write ( '</strong></font>' );
}
document.write ( '</td></tr></table></td></tr>' );
document.write ( "\n" );

// interior table
document.write ( '<tr><td><table width="100%" cellspacing="0" cellpadding="3" border="0">' );

// javascript loop
for ( var i=0; i<aa_how_many; i++ ) {
if ( list[i] == null ) { break; }
document.write ( '<tr><td bgcolor="' );
if ( i%2 != 0 ) {
document.write ( aa_stripe_color_2 );
} else {
document.write ( aa_stripe_color_1 );
}
document.write ( '"><a ' );
if ( aa_not_nscape ) {
  document.write ( 'style="font-family:arial,sans-serif;font-size:11pt;text-decoration:none;" ' );
}
document.write ( 'href="' );
document.write ( list[i].url );
document.write ( '"' );
if ( aa_new_window ) {
  document.write ( ' target="_blank"' );
}
document.write ( '"><font face="arial,sans-serif" point-size="11">' );
if ( aa_display_category ) {
document.write ( '<u><strong>' );
document.write ( list[i].slug );
document.write ( '</strong></u> ' );
}
document.write ( list[i].headline );
document.write ( '</font></a> </td></tr>');
document.write ( "\n" );
}

// powered-by text at bottom
document.write ( '<tr><td align="right">');
if ( aa_not_nscape ) {
  document.write ( '<span style="font-family:arial,sans-serif;font-size:9pt;text-decoration:none;">' );
} else {
  document.write ( '<font face="arial,sans-serif" point-size="9">' );
}
document.write ( 'powered by allAfrica.com <br />' );
document.write ( '<a href="http://allafrica.com/ethiopia/" target="_blank">more news</a> &gt;&gt; ' );
if ( aa_not_nscape ) {
  document.write ( '</span>' ); 
} else {
  document.write ( '</font>' );
}
document.write ( '</td></tr>' );

// close up the tables
document.write ( '</table></td></tr>' );
document.write ( '</table>' );
document.write ( '</td></tr></table>' );






