// JavaScript Document
var quotes = new Array;
quotes.push("Capital city: Victoria on Vancouver Island");
quotes.push("Population: 4.1 million (Concentrated in Vancouver, population 2.1 million, and Victoria, population 345,000) ");
quotes.push("Population: Canada's third most populated province (after Ontario and Quebec) ");
quotes.push("Population: Only province in Canada to experience a 'West Coast special': ski and  golf in the same day ");
quotes.push("Westernmost of Canada's 10 provinces ");
quotes.push("History: Entered Canadian confederation in 1871");
quotes.push("Total Area: 944,735 sq km (364,764 sq mi)");
quotes.push("Highest Point: Fairweather Mountain, 4,663 m (15,299 ft)");
quotes.push("Lowest Point: Pacific Ocean, sea level");
quotes.push("Longest River: Fraser River, 1,368 km (850 mi)");
quotes.push("Largest Lake: Williston Lake (reservoir), 1,761 sq km (680 sq mi)");
quotes.push("Largest Island: Vancouver Island, 32,137 sq km (12,408 sq mi)");
quotes.push("Provincial Flower: Pacific Dogwood");
quotes.push("Provincial Tree: Western Red Cedar");
quotes.push("Provincial Bird: Steller's Jay");
quotes.push("Provincial Gemstone: Jade");
quotes.push("Provincial Motto: 'Splendour without diminishment'");
document.write(quotes[(Math.floor(Math.random() * quotes.length))]);

