﻿var rdalHeaderScriptLoaded = (new Date()).getTime();
String.prototype.trim = function() {
    return this.replace(/^\s+|\s+$/g, "");
}
// startsWith function on strings
String.prototype.startsWith = function(s) { return this.indexOf(s) == 0; }