//include: BuildArray.js
function buildArray() {
 var a = buildArray.arguments;
 for (i=0; i<a.length; i++) {
 this[i]=a[i];
 } 
this.length=a.length;
this.targetnew=true;
} 

var dropDownList = new buildArray(
"Samples...",
"Commodities",
"FX Options",
"Energy",
"Euro Focus",
"Euro Indices",
"Forex-AM",
"Forex-Mid",
"Forex-PM",
"Forex Wkly",
"Grains",
"Int Rates",
"JPY Preview",
"Base Metals",
"Meat/Live.",
"NA Indices",
"Prec. Metal",
"S&P 500",
"Sterling",
"Swiss Franc",
"Tropicals",
"Bonds Wkly",
"Index Wkl",
"Yen Focus"
);

var urlList = new buildArray(
"",
"http://commodities.theFinancials.com/Newsletter_WeekendCommoditiesReview.html",
"http://currencies.theFinancials.com/Newsletter_FXOption.html",
"http://commodities.theFinancials.com/Newsletter_DailyEnergyReview.html",
"http://currencies.theFinancials.com/Newsletter_FX_Focus_EUR.html",
"http://indices.theFinancials.com/Newsletter_IXEU_TA.html",
"http://currencies.theFinancials.com/Newsletter_FX_DailyUpdate.html",
"http://currencies.theFinancials.com/Newsletter_FXMiddayUpdate.html",
"http://currencies.theFinancials.com/Newsletter_FXEveningUpdate.html",
"http://currencies.theFinancials.com/Newsletter_FX_WeeklyOutlook.html",
"http://commodities.theFinancials.com/Newsletter_DailyGrainsReview.html",
"http://currencies.theFinancials.com/Newsletter_IRUpdate.html",
"http://currencies.theFinancials.com/Newsletter_FXJapanesePreview.html",
"http://commodities.theFinancials.com/Newsletter_DailyLMEReview.html",
"http://commodities.theFinancials.com/Newsletter_DailyLivestockReview.html",
"http://indices.theFinancials.com/Newsletter_IXNA_TA.html",
"http://commodities.theFinancials.com/Newsletter_DailyMetalsReview.html",
"http://indices.theFinancials.com/Newsletter_IXDailyPreview.html",
"http://currencies.theFinancials.com/Newsletter_FX_Focus_GBP.html",
"http://currencies.theFinancials.com/Newsletter_FX_Focus_CHF.html",
"http://commodities.theFinancials.com/Newsletter_DailyTropicalsReview.html",
"http://currencies.theFinancials.com/Newsletter_WeekendBondsReview.html",
"http://indices.theFinancials.com/Newsletter_WeekendIndexReview.html",
"http://currencies.theFinancials.com/Newsletter_FX_Focus_JPY.html"
);
