function getLastModified(docLastModified) {
        var mod = new Date(docLastModified);
        var months = new Array("jan","feb","mar","apr","may","jun","jul","aug","sep","oct","nov","dec");
        var str = "";

        str  = "last modified " + mod.getDate() + " " + months[mod.getMonth()] + " ";
        str += (mod.getYear() < 2000) ? 1900 + mod.getYear() : mod.getYear();

        return str;
}

function getCopyleft(docLastModified) {
        var mod = new Date(docLastModified);
        var str = "";

        str = "&copy; " + ((mod.getYear() < 2000) ? 1900 + mod.getYear() : mod.getYear()) + " <a href=\"http://dumpsterventures.com\">Dumpster Ventures</a>";

        return str;
}
