﻿// JScript File

var urlAddress  = "http://www.localpages.ie";
var pageName = "LocalPages.ie";

function addToFavorites()
{ if (window.external)
{ window.external.AddFavorite(urlAddress,pageName);
} else { alert("Sorry! Your browser doesn't support this function.");
}
}


function trim(str, chars) {
    return ltrim(rtrim(str, chars), chars);
}

function ltrim(str, chars) {
    chars = chars || "\\s";
    return str.replace(new RegExp("^[" + chars + "]+", "g"), "");
}

function rtrim(str, chars) {
    chars = chars || "\\s";
    return str.replace(new RegExp("[" + chars + "]+$", "g"), "");
}
