﻿function Guid() {
    var S4 = function () {
        return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
    };
    return (S4() + S4() + "-" + S4() + "-" + S4() + "-" + S4() + "-" + S4() + S4() + S4());
}

function IsRecensementOrInspection() {
    return (
        window.location.pathname.indexOf("/Recensement") != -1 ||
        window.location.pathname.indexOf("/HobbyRecensement") != -1 ||
        window.location.pathname.indexOf("/Inspection") != -1
    );
}
