//Battle record/Awards in Post Details
//Copyright to Slaytanist and Gornakle

var awards=[];
awards["Megan O'Shea"]=["","","","NC FanArt Participant 2005, NC FanFic Participant 2005"];

function popUp(Message) {
alert(Message.replace(/,/,"\n"));
}

a=document.getElementsByTagName("TD")
for(i=0;i<a.length;i++)
if((a[i].className=="post1"||a[i].className=="post2")&&a[i].innerHTML.match("Posts: ")&&a[i].width!="100%") {
b=a[i].getElementsByTagName("SPAN")[0]
tehname = a[i-2].innerHTML.replace(/<[^>]+>/g,"").replace(/&nbsp;/g,"")

if(awards[tehname])
{
c = "<br /><br /> "+awards[tehname][0]+"  <b>Awards:</b> "+awards[tehname][1]+"<br />"
if (awards[tehname][3])
c+="<a href=http://s4.invisionfree.com/North_Castle/index.php?showtopic=700><img src='http://botu.northcastle.co.uk/Forums/PendentCourage.gif' Alt='NC FanArt Participant 2005'></a><a href=http://s4.invisionfree.com/North_Castle/index.php?showtopic=700><img src='http://botu.northcastle.co.uk/Forums/PendentWisdom.gif' Alt='NC FanFic Participant 2005'></a>"
}
else
c="";
b.innerHTML += c;
}