function xwask(frm) {

var xwtab01 = new Array(
	"badlands",		"canyon",		"castle",		"rapids",		"cemetery",
	"city",			"waterfall",		"sea",			"desert",		"dungeon",
	"foothills",		"forest",		"fountain",		"ocean",		"tombs",
	"glade",		"grotto",		"heavens",		"hells",		"island",
	"cavern",		"beach",		"atoll",		"marsh",		"clouds",
	"peaks",		"brush",		"pillars",		"plain",		"orchard",
	"prairie",		"ravine",		"ricefield",		"paradise",		"ruins",
	"labyrinth",		"shrine",		"glacier",		"swamp",		"temple",
	"tower",		"tundra",		"clearing",		"cliff",		"village",
	"vineyard",		"volcano",		"wastelands",		"well",			"bluff");


var xwtab02 = new Array(
	"east",			"north",		"north-east",		"north-west",		"south",
	"south-east",		"south-west",		"west");

var xwtab03 = new Array(
	"the Ancient Ruins",				"Blackrock Pass",
	"the Hunting Grounds",				"the Iron City",
	"the Jade Gate",				"Mount Kachi",
	"Pang-Wu Province",				"the Yang River Bridge",
	"the Dragon's Crater",				"the Swamp of Hopelessness",
	"the Sea of Stars",				"the Obsidian Tower",
	"Xiang-Xia Province",				"the Imperial Palace",
	"the Valley of Shadows",			"the Altar of the Ancestors",
	"the Purelands",				"the Garden of Worship",
	"the Point of the Wailing Bones",		"the Endless Beach",
	"the Bottomless Well",				"the Tomb of the Ancient Kings",
	"the Hall of Bones",				"the Vineyard of Xian's Song",
	"the Garden of Lost Hope",			"the Desert of Gems",
	"the Snowy Wastes",				"the Ancient Volcano",
	"the Spring of Life",				"the Old Hermit's Village",
	"the Forbidden City",				"the Jade Cliffs",
	"the Graveyard of the Undying",			"the Cho-ma Market Square",
	"the Altar of the Rainbow Circle",		"Ssu-Ma's Tomb",
	"the Eyrie of the Phoenix",			"the Palace of the Dragon Kings",
	"the Cherry Blossom Pagoda",			"the Plaza of the Ten Thousand Immortals",
	"the Lake of the Sacred Tortoise",		"the Imperial Pleasure Garden",
	"Shangtung Mountain",				"the Baths at Lo Xiang",
	"the Monastery of the Red Butterfly",		"Dancing Buddha's Shrine",
	"the Citadel of Lord Lao",			"the Sweetwater Swamp",
	"NorthGuard Keep",				"the Guardian Range");

var xwtab04 = new Array(
	"dawn",			"morning",		"day",			"evening",		"dusk",
	"night");

var xwtab05 = new Array(
	"blizzard",		"cherry blossom",	"weasel",		"chimera",		"claw",
	"crab",			"crane",		"dagger",		"dragon",		"tsunami",
	"willow",		"fang",			"fist",			"fox",			"oak",
	"hammer",		"grasshopper",		"kama",			"ki-rin",		"lizard",
	"lotus blossom",	"trident",		"manticore",		"mantis",		"mace",
	"nunchaku",		"scythe",		"northstar",		"foot",			"panther",
	"phoenix",		"unicorn",		"rat",			"raven",		"whip",
	"scorpion",		"snake",		"spear",		"spider",		"staff",
	"sword",		"chain",		"thunder",		"tiger",		"lightning",
	"east wind",		"turtle",		"southern cross",	"west wind",		"wolf");

	weather = "The ancient masters have decreed this match to take place at the ";
	weather += xwtab01[Math.floor(xwtab01.length*Math.random())];
	weather += " ";
	weather += xwtab02[Math.floor(xwtab02.length*Math.random())];
	weather += " of ";
	weather += xwtab03[Math.floor(xwtab03.length*Math.random())];
	weather += " on the ";
	weather += xwtab04[Math.floor(xwtab04.length*Math.random())];
	weather += " of the ";
	weather += xwtab05[Math.floor(xwtab05.length*Math.random())];
	weather += ".";
return weather;}

