document.writeln('<div style="border: thin solid black; padding: 2px; background: white;">');
document.writeln('<div style="background: yellow; width: 130px;" align=center width=130>');

document.writeln('<div class="statusHeader">Osama Status</div>');
document.writeln('<b><blink>FOUND</blink></b>');
document.writeln('</div><div id="clock" width="100%"><br><br></div></div>');


dClock=document.getElementById("clock");

function update() {
 dClock.innerHTML = "<b>Current time in Afghanistan:</b><br>" + kabulTime();
}
update();
setInterval("update()",60*1000);


document.writeln('</div><br>');

linksArray = new Array ("Home","Instructions","Find Osama", "News Releases","Weapon Systems","Contact","About","Spread the Word");
linksArrayURLs = new Array ("./","help.html","find.html","newsreleases.php","weapons.html","contact.php","about.php","word.php");


highlight = "javascript:this.style.backgroundColor='#0000FF';" ;
unHighlight = "javascript:this.style.backgroundColor='';" ;


loc = window.location.pathname;
currentPageArr= loc.split("/");
currentPage = currentPageArr[currentPageArr.length-1];
if ((currentPage == "osama") || (currentPage=="")) {
    currentPage ="./";
}

count = linksArray.length;
for (i=0; i<count ; i++) {
   if ( currentPage == linksArrayURLs[i] ) {
     document.writeln('<div width="100%" class="redBox"> &nbsp;<span class="menuLinkBar" style="width:130;">' + linksArray[i] + '</span></div>');
   } else {
     document.writeln( '<div width="100%" class="blueBox" onMouseover="' +  highlight + '" onMouseout="' + unHighlight + '" onClick="javascript:window.location.href=\'' + linksArrayURLs[i] + '\'"> &nbsp;<span class="menuLinkBar" style="width:130;">' + linksArray[i] + '</span></div>' );
   }
}

document.writeln('<br>');

if ( currentPage == "message.html" ) {
     document.write( '<div width="100%" class="redBox"><table cellspacing=0 cellpadding=0 border=0><tr><td></td><td>&nbsp;</td><td class="menuLinkBar" >Message from the Chief</td></tr></table></div>');
   } else {
     document.write('<div width="100%" class="blueBox" onMouseover="' +  highlight + '" onMouseout="' + unHighlight + '" onClick="javascript:window.location.href=\'message.html\'"><table cellspacing=0 cellpadding=0 border=0><tr><td><img src="images/gwb_sm.jpg" width=50 height=66 align=left border=0></td><td>&nbsp;</td><td class="menuLinkBar" >Message from the Chief</td></tr></table></div>');
   }


document.write('<br><b>External links</b><br><a href="http://news.yahoo.com/fc?tmpl=fc&cid=34&in=world&cat=afghanistan" class="menuLink">Afghani News</a><br><a href="http://www.weather.com/outlook/travel/map/AFXX0004?from=LAPmaps" target="weather" class="menuLink">Afghani Weather</a><br><a href="http://www.raptureready.us/osama.htm" target="fbi" class="menuLink">Osama Bio</a><br><a href="http://www.fbi.gov/mostwant/topten/fugitives/laden.htm" target="fbi" class="menuLink">Osama FBI file</a>');

