var count;
var link_url = new Array();
for (counter = 0; counter < nPapers0; counter++){
   count = counter + 1;

   <!-- Write paper title and link to abstract -->
   document.write("<TR><TD valign=top rowspan=4>");
   document.write("<B>" + count + ".</B></TD Valign=Top Rowspan=4>");

   link_url[counter] = "'./Papers/" + mCode[counter] + ".html'";

   document.write("<TD>");
   document.write('<A HREF="javascript:ABSTRACT(' +
                  link_url[counter] +
		  ')" onMouseOver=' + "'window.status=" + 
		  mTitle[counter] +
		  "; return true;'>" + 
		  mTitle[counter] +
		  '</A><BR>');
   document.write("</TD></TR>");

   <!-- Write list of authors -->
   document.write("<TR><TD>");
   document.write('<FONT face="Helvetica,Arial" size=3>');
   for(i = 0; i < mAuthor[counter].length-1; i++){
      if (mAuthor[counter][i] == luis)
         document.write(mAuthor[counter][i].bold() + ", ");
      else 
         document.write(mAuthor[counter][i] + ", ");
   }
   if (mAuthor[counter][i] == luis){
      if (i == 0)
	 document.write(mAuthor[counter][i].bold() + "<BR>");
      else
         document.write("& " + mAuthor[counter][i].bold() + "<BR>");
      }
   else 
      document.write("& " + mAuthor[counter][i] + "<BR>");
   document.write('</FONT>');
   document.write("</TD></TR>");

   <!-- Write Journal reference -->
   document.write("<TR><TD>");
   document.write('<FONT face="ITC Bookman" size=3>');
   document.write(mJournal[counter].italics() + "  " + mVolume[counter].bold() + ", " + mPages[counter] + " ("+ mYear[counter] + ")." + "<BR>");
   document.write('</FONT>');
   document.write("</TD></TR>");

   <!-- Write links for copies of paper -->
   document.write("<TR><TD>");
   document.write('<DIV align=right>');
   document.write('<FONT face="Helvetica,Arial" size=2>');
   if (mDoc[counter][0] == 0){
      ref_text = "[No digital version available]";
      document.write( ref_text );
   }
   else{
      if (mDoc[counter][0] == 1){
         ref_text = "Download PDF file here-" + mDoc[counter][1] + "K";
         document.write("[" + ref_text.link("./Papers/" + mCode[counter] + ".pdf") + "]");
      }
   }
   document.write('</FONT>');
   document.write('</DIV>');
   document.write("</TD></TR>");

}

