
otherNewsArray=[
["A Pair of Aces","http://d23.disney.go.com/articles/11020909_TT_WE_MuskerClements.html"],["<b>LAWRY'S PRIME RIB AS PREPARED BY THE TAM O'SHANTER</b><br />","http://d23.disney.go.com/recipes/1102909_TT_Recipe_TamBeef.html"],["D23's Candlelight Spectacular at Disneyland","http://d23.disney.go.com/expo/100709_D23Event_DLRCandlelight.html"],["Enter the D23 Hollywood VIP Getaway Sweepstakes!","http://d23.disney.go.com/articles/102209_NF_BN_D23VipSweepsHollywood.html"]
];

function writeOtherNews(thispagetitle){
document.writeln('<div style="margin-left:10px;">\
<div id="OTHER_NEWS_DIV" style="background:url(http://d23.disney.go.com/images/background-other-news.gif) no-repeat; width:199px; height:274px;">\
<div style="padding:12px 10px 12px 10px;">\
<div align="center" style="font:bold 14px verdana;">OTHER NEWS</div>\
<ul class="even">');

for (on=0; on<otherNewsArray.length; on++){
if (otherNewsArray[on][0]!=thispagetitle){
document.writeln('<li><a href="'+otherNewsArray[on][1]+'">'+otherNewsArray[on][0]+'</a><br><br>');
}}
document.writeln('</ul>\
</div>\
</div>\
</div>');
}
