🧪 Comprehensive Metabolic Panel (CMP) Interpreter
Interprets a full 14-marker CMP panel: Glucose, BUN, Creatinine, Calcium, Total Protein, Albumin, Total Bilirubin, ALP, ALT, AST — detecting liver disease, kidney disease, diabetes, and electrolyte disorders in one pass.
Enter your clinical parameters to see dynamic diagnostic readings.
📋 Copy
🔗 Share
🖨️ PDF Report
`;
} else {
card.innerHTML = `
${res.score}
${res.title}
${res.desc}
📋 Result Interpretation
${res.desc}
📊 Normal Ranges
Calcium: 8.5–10.5 mg/dL | Total Protein: 6.0–8.3 g/dL | Albumin: 3.4–5.4 g/dL | Total Bilirubin: <1.2 mg/dL | ALP: 44–147 U/L
💡 What This Means
The CMP is a standard metabolic screening panel that provides a simultaneous snapshot of metabolic, liver, and kidney function in one blood draw.
⚠️ When to See a Doctor
Seek evaluation for Calcium > 11 mg/dL (hypercalcaemia), Albumin < 2.5 g/dL (severe hypoalbuminaemia), or Bilirubin > 3 mg/dL (jaundice).
🔗 Related Conditions
🌿 Related Remedies
🧮 Related Calculators
🏥 Medical Guidance & Consultation
Need personalized guidance? You can book a professional Homeopathic Consultation for a complete therapeutic assessment.
📋 Copy
🔗 Share
🖨️ PDF Report
`;
}
}
function copyResult_hc_6a9652a5eef97(score, title) {
const text = "Comprehensive Metabolic Panel (CMP) Interpreter Result:\nScore: " + score + "\nClassification: " + title + "\nReport generated via Toolfix.info";
navigator.clipboard.writeText(text).then(() => {
alert('Result copied to clipboard!');
});
}
function shareResult_hc_6a9652a5eef97(score) {
const shareUrl = window.location.origin + window.location.pathname + '?score=' + encodeURIComponent(score);
navigator.clipboard.writeText(shareUrl).then(() => {
alert('Share link copied to clipboard!');
});
}
// Auto-calculate on input
(function() {
const initAutoCalc = () => {
const wrapper = document.getElementById('hc_6a9652a5eef97-wrapper');
if (wrapper) {
wrapper.querySelectorAll('input, select').forEach(el => {
const eventName = el.tagName === 'SELECT' ? 'change' : 'input';
el.addEventListener(eventName, () => {
calc_hc_6a9652a5eef97(true);
});
});
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initAutoCalc);
} else {
initAutoCalc();
}
})();