{"id":2219,"date":"2025-03-25T17:38:11","date_gmt":"2025-03-25T21:38:11","guid":{"rendered":"https:\/\/vets.clearpointpharmacy.com\/calculateur-de-dosage\/"},"modified":"2025-08-19T13:36:21","modified_gmt":"2025-08-19T17:36:21","slug":"calculateur-de-dosage","status":"publish","type":"page","link":"https:\/\/vets.clearpointpharmacy.com\/fr\/calculateur-de-dosage\/","title":{"rendered":"Calculateur de dosage"},"content":{"rendered":"\n    <link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/tailwindcss@2.2.19\/dist\/tailwind.min.css\">\n\n\n    \n<div class=\"p-6 max-w-5xl mx-auto bg-white rounded-xl shadow-md space-y-4 \">\n    <h2 class=\"text-xl font-bold text-left\" style=\"color: rgb(102, 156, 237);\">GS-441524 Dosing Calculator<\/h2>\n\n    <!-- <div class=\"space-y-2\">\n        <span class=\"text-lg text-left\">To be used with Avrio Pharmacy's compounded GS-441524 50mg tablets when treating FIP<\/span>\n    <\/div> -->\n<\/div>\n<br>\n<div class=\"p-6 max-w-5xl mx-auto bg-white rounded-xl shadow-md space-y-4 \">\n    <div class=\"flex flex-col\">\n        <div class=\"flex justify-between\">\n            <div>\n                <label class=\"block font-bold text-lg\" style=\"color: rgb(102, 156, 237);\">Type of FIP <span style=\"color:rgb(255, 0, 0);\" id=\"selected-fip-type\"><\/span><\/label>\n                <select id=\"fip-type\" class=\"w-full p-2 border rounded\">\n                    <option value=\"\">Select FIP Type<\/option>\n                    <option value=\"15\">Wet abdominal or dry FIP (15mg\/kg\/day)<\/option>\n                    <option value=\"20\">Ocular\/Neurological FIP (20mg\/kg\/day)<\/option>\n                    <option value=\"20r\">Wet\/Dry Relapse\/Regression (20mg\/kg\/day)<\/option>\n                <\/select>\n            <\/div>\n            <div class=\"space-y-2\">\n                <label class=\"block font-bold text-lg\" style=\"color: rgb(102, 156, 237);\">Weight Unit<\/label>\n                <div class=\"flex space-x-4\">\n                    <label class=\"flex items-center\">\n                        <input type=\"radio\" name=\"weight-unit\" value=\"kg\" checked class=\"mr-2\"> Kg\n                    <\/label>\n                    <label class=\"flex items-center\">\n                        <input type=\"radio\" name=\"weight-unit\" value=\"lbs\" class=\"mr-2\"> Lbs\n                    <\/label>\n                <\/div>\n            <\/div>\n            <div class=\"space-y-2\">\n                <label class=\"block font-bold text-lg\" style=\"color: rgb(102, 156, 237);\">Enter Cat's Weight <span style=\"color:rgb(0, 0, 0);\" id=\"converted-weight-decimal\">(0.00)<\/span><\/label>\n                <input id=\"cat-weight\" type=\"number\" class=\"w-full p-2 border rounded\" placeholder=\"Enter weight\">\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"hidden flex flex-col\" id=\"results\">\n        <label class=\"block font-bold p-2 text-lg\" style=\"color: rgb(102, 156, 237);\">Recommend Dosing Information for your cat based on information provided above:<\/label>\n        <div>\n            <div class=\"p-2 bg-white rounded-xl shadow-md space-y-4\">\n                <p class=\"p-1 text-xl\">Your cat's weight is <strong><span id=\"converted-weight\">0<\/span> kg<\/strong> <a id=\"is-kg-selected\"><\/a> and is being treated for <strong id=\"selected-fip\"><\/strong>.<\/p>\n                <p class=\"p-1 text-xl\">Your cat's daily dose is rounded to <strong><span id=\"daily-dose\">0<\/span> mg<\/strong> of GS-441524 per 24 hours to easily use Avrio\u2019s compounded tablets.<\/p>\n                <p class=\"p-1 text-xl\">Your cat will take an estimated <strong><span id=\"tablet-count\">0<\/span><\/strong> tablets per day with an estimated daily price of <strong>$<span id=\"daily-price\">0.00<\/span><\/strong> per day.<\/p>\n                <p class=\"pt-4\" style=\"font-size: 12px; font-style: italic; color: gray;\"> \n                    *Please note: Cats weighing at the very low end or very high end of each dose range should be dosed as recommended by the Veterinarian. This calculator is built as a guide and does not account for clinical decisions, in-office scale specificity, or round for more than 2 decimal places. Please contact the pharmacy with any dosing questions.\n                <\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<br>\n<div class=\"p-10 max-w-5xl mx-auto space-y-4 \">\n    <div class=\"space-y-2  \">\n        <span class=\"text-lg text-left\" style=\"font-style: italic;\">Please contact the pharmacy with any further questions. This calculator is based on recommended dosing but is not intended to replace Veterinarian's clinical judgement or decisions. In some instances daily dosing may be divided and given every 12 hours.<\/span>\n    <\/div>\n<\/div>\n\n\n<script>\n    document.addEventListener(\"DOMContentLoaded\", function () {\n        const weightInput = document.getElementById(\"cat-weight\");\n        const fipTypeSelect = document.getElementById(\"fip-type\");\n        const weightUnits = document.querySelectorAll(\"input[name='weight-unit']\");\n        const resultsDiv = document.getElementById(\"results\");\n\n        const convertedWeightEl = document.getElementById(\"converted-weight\");\n        const convertedWeightDecimalEl = document.getElementById(\"converted-weight-decimal\");\n        const selectedFipEl = document.getElementById(\"selected-fip\");\n        const selectedFipTypeEl = document.getElementById(\"selected-fip-type\");\n        const dailyDoseEl = document.getElementById(\"daily-dose\");\n        const tabletCountEl = document.getElementById(\"tablet-count\");\n        const dailyPriceEl = document.getElementById(\"daily-price\");\n\n        const isKGSelected = document.getElementById(\"is-kg-selected\");\n\n        const pricePerTablet = 9;\n        const tabletMg = 50;\n\n        function calculateDosage() {\n            if(fipTypeSelect.options[fipTypeSelect.selectedIndex].value === \"20r\"){\n                selectedFipTypeEl.innerText = ' (Previously treated at 15mg\/kg)';\n            } else {\n                selectedFipTypeEl.innerText = '';\n            }\n            let weight = parseFloat(weightInput.value);\n            if (!weight) {\n                convertedWeightDecimalEl.innerText = \"(0.00 kg)\"; \n                return;\n            }\n\n            let selectedUnit = document.querySelector(\"input[name='weight-unit']:checked\").value;\n            if (selectedUnit === \"lbs\") {\n                weight = weight * 0.453592;\n                isKGSelected.innerText = \" (weight has been converted to kg)\";\n            }else{\n                isKGSelected.innerText = '';\n            }\n\n            convertedWeightDecimalEl.innerText = '(' + weight.toFixed(2) + ' kg)';\n\n            let fipDosage = fipTypeSelect.value;\n            if (!fipDosage) return;\n\n            let dailyDose = weight * parseFloat(fipDosage);\n            let roundedDose = Math.round(dailyDose \/ 5) * 5;\n\n            let tabletCount = Math.round((roundedDose \/ tabletMg) * 4) \/ 4;\n            let dailyPrice = (tabletCount * pricePerTablet).toFixed(2);\n\n            convertedWeightEl.innerText = weight.toFixed(2);\n            selectedFipEl.innerText = fipTypeSelect.options[fipTypeSelect.selectedIndex].text;\n\n            dailyDoseEl.innerText = roundedDose;\n            tabletCountEl.innerText = tabletCount;\n            dailyPriceEl.innerText = dailyPrice;\n\n            resultsDiv.classList.remove(\"hidden\");\n        }\n\n        weightInput.addEventListener(\"input\", calculateDosage);\n        fipTypeSelect.addEventListener(\"change\", calculateDosage);\n        weightUnits.forEach(unit => unit.addEventListener(\"change\", calculateDosage));\n    });\n<\/script>\n   \n\n    \n","protected":false},"excerpt":{"rendered":"","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2219","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/vets.clearpointpharmacy.com\/fr\/wp-json\/wp\/v2\/pages\/2219","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vets.clearpointpharmacy.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/vets.clearpointpharmacy.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/vets.clearpointpharmacy.com\/fr\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/vets.clearpointpharmacy.com\/fr\/wp-json\/wp\/v2\/comments?post=2219"}],"version-history":[{"count":1,"href":"https:\/\/vets.clearpointpharmacy.com\/fr\/wp-json\/wp\/v2\/pages\/2219\/revisions"}],"predecessor-version":[{"id":2221,"href":"https:\/\/vets.clearpointpharmacy.com\/fr\/wp-json\/wp\/v2\/pages\/2219\/revisions\/2221"}],"wp:attachment":[{"href":"https:\/\/vets.clearpointpharmacy.com\/fr\/wp-json\/wp\/v2\/media?parent=2219"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}