
String.prototype.trim = function()
     { 
        return this.replace(/^\s+|\s+$/, ''); 
     };

function UpdateListLabelWith(sNewListName)
{
    if(window.UpdatePageSpecificLabel)
    {
        UpdatePageSpecificLabel(sNewListName);
    }    
}

