
bottomPromosArray=[
["http://d23.disney.go.com/images/promos/D23_SynergyTiles_DisMovieRewards.jpg","http://disney.go.com/disneymovierewards/?cmp=dmov_dmr_bac_d23_180x150"],
["http://d23.disney.go.com/images/promos/071309_DMC.gif","https://disneymovieclub.go.com/webapp/wcs/stores/servlet/AcquisitionBrowseView?langId=-1&storeId=10001&catalogId=10051&headerText=Bestsellers&categoryId=10074&offerId=uaxw9Nut8tQ%3D&source=&sourceId"],
["http://d23.disney.go.com/images/promos/D23_SynergyTiles_DLResortAnnual.jpg","https://secure-disneyland.disney.go.com/disneyland/en_US/ap/index?name=AnnualPassholderGatewayPage&appRedirect=http://disneyland.disney.go.com/disneyland/en_US/ap/gated/landing?name=AnnualPassholderLandingPage&CMP=BAC-D23_DLRAPLanding_BecomePassholder"],
["http://d23.disney.go.com/images/promos/D23_SynergyTiles_ElCap.jpg","http://elcapitantickets.com"]
];

function writeBottomPromos(){

document.writeln('<table border="0" cellspacing="16" align="center"><tr>');

for (bp=0; bp<bottomPromosArray.length; bp++){
if (bottomPromosArray[bp][0]!=""){
document.writeln('<td>\
<div style="background:url(http://d23.disney.go.com/images/bottom-ad-frame.gif) no-repeat; width:194px; height:164px;">\
<div style="padding:6px 8px; 6px 8px;">');
if (bottomPromosArray[bp][1]!=""){ document.writeln('<a href="'+bottomPromosArray[bp][1]+'"><img src="'+bottomPromosArray[bp][0]+'" border="0" alt=""></a>'); }
else { document.writeln('<img src="'+bottomPromosArray[bp][0]+'" border="0" alt="">'); }

document.writeln('</div>\
</div>\
</td>');
}}
document.writeln('</tr></table>');
}
