<!-- Begin

// Set up the image files to be used.

  var list= new Array()
  list[list.length]='picts/random_pics/english1.jpg';
  list[list.length]='picts/random_pics/english1.jpg';

  j=parseInt(Math.random()*list.length);
  j=(isNaN(j))?0:j;

// The unedited HTML code below was snatched from "links.htm" and was modified for this JavaScript include.
// Each time the user loads the page this function dynamically changes the 
// picture per the list of jpg's above (MT 2/25/2006):

document.write("<TABLE cellpadding='0' cellspacing='0' border='0' width='100%'><tr><td width='750'>");
document.write("<IMG SRC=" + list[j] + " width='750' height='80' alt='image'><BR>");
document.write("</td><td width='1' bgcolor='#000000'>");
document.write("<IMG SRC='picts/spacer.gif' width='1' height='80' alt='image'><BR>");
document.write("</td><td background='picts/top-picture-end.gif'>");
document.write("<IMG SRC='picts/spacer.gif' height='20' width='15' border='0'><BR>");
document.write("</td></tr></table>");

//  End -->

