
<!-- 
bName = navigator.appName;bVer = parseInt(navigator.appVersion); 
if      ((bName == "Netscape" && bVer >= 3) || 
   (bName == "Microsoft Internet Explorer" && bVer >= 3)) br = "n3"; 
else br = "n2"; 
// Where you place this is where the random object will be displayed. 
if (br == "n3") { 
 document.write(images[rand(images.length)]) 
} 
else { 
 document.write("<img src='/east/program/images/books.gif' border='0'>"); 
} 
// --> 

