<!-- ;


function Tavern()

{

var rana = Math.floor(Math.random()*38)
var ranb = Math.floor(Math.random()*25)
var ranc = Math.floor(Math.random()*6)

a  = new Array(38)
a[0] = "The Axe and "
a[1] = "The Black "
a[2] = "The Blind "
a[3] = "The Broken "
a[4] = "The Crossed "
a[5] = "The Crowned "
a[6] = "The Dark "
a[7] = "The Drunken "
a[8] = "The Flaming "
a[9] = "The Forgotten "
a[10] = "The Fox and "
a[11] = "The Full "
a[12] = "The Golden "
a[13] = "The Green "
a[14] = "The Hunter's "
a[15] = "The King's "
a[16] = "The Last "
a[17] = "The Lazy "
a[18] = "The Lonely "
a[19] = "The One Armed "
a[20] = "The Pink "
a[21] = "The Old "
a[22] = "The Queen's "
a[23] = "The Sailor's "
a[24] = "The Sign of the "
a[25] = "The Call of the "
a[26] = "The Silver "
a[27] = "The Spotted "
a[28] = "The Stag and "
a[29] = "The Third "
a[30] = "The Two Fingered "
a[31] = "Ride the "
a[32] = "The Good "
a[33] = "Hide the "
a[34] = "The Sword and "
a[35] = "The Drowned "
a[36] = "Under the " 
a[37] = "Beat the "


b  = new Array(25)
b[0] = "Admiral "
b[1] = "Bed "
b[2] = "Boar "
b[3] = "Dagger "
b[4] = "Dragon "
b[5] = "Fist "
b[6] = "Hand "
b[7] = "Hound "
b[8] = "Lady "
b[9] = "Lord "
b[10] = "Moon "
b[11] = "Nest "
b[12] = "Rest "
b[13] = "Ring "
b[14] = "Snake "
b[15] = "Stop "
b[16] = "Sword "
b[17] = "Traveller  "
b[18] = "Warlock "
b[19] = "Wench "
b[20] = "Wolf "
b[21] = "Star "
b[22] = "Man "
b[23] = "Bottle "
b[24] = "Serpent "

c  = new Array(6)
c[0] ="Tavern"
c[1] ="Inn"
c[2] ="Alehouse"
c[3] ="Tavern"
c[4] ="Tavern"
c[5] ="Inn"


document.names.tavern.value  = a[rana] + b[ranb] + c[ranc]
}


// end hide -->


