<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

Maps = new makeArray(9);
Maps[0] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";
Maps[1] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";
Maps[2] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";
Maps[3] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";
Maps[4] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";
Maps[5] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";
Maps[6] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";
Maps[7] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";
Maps[8] = "To create a map, type in a street address (optional), city and state (or zip), and select a country.";

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

//-->