// /sitemap.js
//
// Every virtual page available in this account type subtree
// should be represented in the associative array below.
//
// Entries are of the form page["key"]="value" where array keys 
// are the actual physical page locations and the values are the
// virtual page locations in this subtree.

page = new Array();

// SINCE THIS IS THE ROOT LEVEL NO MODE (VISITOR?) DEFAULT PAGE, NO ARRAY ENTRIES
// ARE CREATED SINCE NO NEED TO MAP DEFAULT PAGES TO MODE-SPECIFIC VIRTUAL PAGES.

// Function below has been added to general purpose metatags.txt include so
// it is available everywhere. If the page[] array is not found, function
// assumes no sitemap.js included and key is the desired URI.
/*
function jumpTo(var key) {
    if (page) {
	if (page[key]) {
            window.location.href = page[key];
	}
	else {
            alert("sitemap.js ERROR: page not found\n"+key);
	}
    }
    else {
        window.location.href = key;
    }
}
*/