// get a page at random
var r = Math.floor((Math.random()*26)+1);
if (r<10) {d = "asht0" + r + ".htm"};
if (r>9) {d = "asht" + r + ".htm"};
if (r==24) {d = "index.htm"};
var tag = '<p><a href="' + d + '">' + "See a random page from the who's who.</a></p>";
document.write (tag);

