var totalEntries;

function JF_expedList (thisPage) {

  totalEntries = expedList.length -1;  

  document.write("<table width='100' border='0' bordercolor='#FFFFFF' cellspacing='0' cellpadding='0' align='center'>"); 

  for (count=0 ; count <= totalEntries ; count++) {
    if (expedList[count][0]!=thisPage) {
      document.write("<tr><td height='12' class='otherpage'><div align='center'>");
      document.write("<a class='menulink' href='"+expedList[count][1]+".htm'>");
      document.write(expedList[count][0]+"<\/a><\/div><\/td><\/tr>");} else
      {
      document.write("<tr><td height='12' class='thispage'><div align='center'>");
document.write(expedList[count][0]+"<\/div><\/td><\/tr>");
    }
    
  }
  document.write("<\/table>"); 
 
}

function JF_expedListHoriz (thisPage) {

  totalEntries = expedList.length -1;  

  document.write("<table border='0' bordercolor='#FFFFFF' cellspacing='0' cellpadding='0'>"); 

  document.write("<tr>");
  for (count=0 ; count <= totalEntries ; count++) {
    if (expedList[count][0]!=thisPage) {
      document.write("<td width='100' height='12' class='otherpage'><div align='center'>");
      document.write("<a class='menulink' href='"+expedList[count][1]+".htm'>");
      document.write(expedList[count][0]+"<\/a><\/div><\/td>");} else
      {
      document.write("<td width='100' height='12' class='thispage'><div align='center'>");
    document.write(expedList[count][0]+"<\/div><\/td>");
    }
    
  }
  document.write("<\/tr><\/table>"); 
 
}
