flag = new Array("LAM", "BR", "GB", "CA", "AU", "DE", "ZA" );
country = new Array("Latin America", "Brasil", "UK", "Canada", "Australia", "Deutschland", "South Africa");
url = new Array("http://www.barney.com/la","http://www.barney.com/br","http://www.barney.com/uk","http://www.barney.com/ca", "http://www.barney.com/au", "http://www.barney.com/de", "http://www.barney.com/za");
/*url = new Array("http://www.bobthebuilder.com/usa/index.html","http://www.bobthebuilder.com/uk/index.html","http://www.bobthebuilder.com/bob_the_builder_online_website_canada_flag_page.html","http://www.bobthebuilder.com/au/main.html","http://www.bobthebuilder.com/nl/main.html","http://www.bobthebuilder.com/de/main.html","http://www.bobthebuilder.com/fr/index.html","http://www.bobthebuilder.com/es/main.html", "http://www.bobthebuilder.com/it/main.html", "http://www.bobthebuilder.com/jp/main.html", "http://www.bobthebuilder.com/row/main.html");*/
output = '<div style="width:770px;text-align:center;font-family:Arial, Helvetica, sans-serif; font-size:9px;">';
output += '<a href="http://www.barney.com/la"><img src="labarneytext.gif" border="0" alt="Oprima aquí para el sitio de América latina"></a>'
output += '<table cellpadding="4" cellspacing="0" align="center"><tr>';
for ( i = 0; i < flag.length; i++ ) {
	output += '<td><a href="' + url[i] + '"><img id="flagImg" src="http://www.hitentertainment.com/flags/flag' + flag[i] + '.gif" border="0" title="'+country[i]+'" alt="'+country[i]+'"/></a></td>';
}
output += '	</tr></table></div>';
document.write(output);

