var items = new Array(



 new Array("index.html","home.gif","Home",""),
 new Array("","","",""),
 new Array("proceedings.html","","Proceedings","y"),
 new Array("call_for_papers.html","call_for_papers.gif","Call for papers",""),
 new Array("committees.html","committees.gif","Committees",""),
  new Array("","","",""),
 //new Array("program.html","program.gif","Program <font color=#ff5555> NEW!</font>"),
 new Array("program.html","program.gif","Program",""),
 new Array("speakers.html","","Speakers info",""),
 new Array("participants.html","","Participants info",""),
  new Array("","",""),
 new Array("invited_talks.html","invited_talks.gif","Invited talks",""),
 new Array("ssessions.html","","Special sessions",""),
 new Array("workshops.html","workshops.gif","Workshops",""),
 new Array("tutorials.html","tutorials.gif","Tutorials",""),
 new Array("","","",""),
// new Array("registration.html","registration.gif","Registration",""),
 new Array("support.html","","Support",""),
 new Array("instr.html","instr.gif","Paper submission",""),
 new Array("","","",""),
 new Array("venue_info.html","venue_info.gif","Venue info",""),
 new Array("accommodation.html","","Accommodation",""),
 new Array("travel_info.html","travel_info.gif","Travel info",""),
 new Array("","","",""),
 new Array("links_to_previous_icanns.html","previous_icanns.gif","Previous ICANN's",""),
 new Array("links_related_events.html","related_events.gif","Related events",""),
 new Array("","","",""),
 new Array("zdjecia.html","zdjecia.gif","Photo Gallery","")
);



nLabel = 2;
nNew = 3;

strS = new String(document.URL);
arrA = strS.split("/");
docname = arrA[arrA.length-1];
if (docname.length == 0)
  { docname = items[0][0];
  }

for (i=0;i<items.length;i++)
{
//   document.write('<a href="',items[i][0],'"><img src="');
//   if (docname == items[i][0]) 
//     {  document.write("blue/"); }
//   else
//     {  document.write("black/"); }
//   document.write(items[i][1],'" border="0" width="100%"</a>\n');

   if (items[i][0].length == 0)
     { document.write('&nbsp;<br>\n');
     }
   else
     // { document.write('<a href="',items[i][0],'">');
     { document.write('<a href="http://www.ibspan.waw.pl/ICANN-2005/',items[i][0],'">');
       if (docname == items[i][0]) 
//         {  document.write('<span style="color:black;">'); }
         {  document.write('<font color="black">'); }
       else
         if (items[i][nNew]) 
//           {  document.write('<span style="color:red;">'); }
           {  document.write('<font color="red">'); }
         else
//           {  document.write('<span style="color:white;">'); }
           {  document.write('<font color="white">'); }
//       document.write(items[i][nLabel],'</span></a><br>\n');
       document.write(items[i][nLabel],'</font></a><br>\n');
     }
};
 

