calcPageSize())" />
calcPageSize())" class="absolute inset-0 object-contain object-center w-full m-auto max-h-screen-75" :class="{ 'cursor-pointer': !fullscreen }" width="467" height="467" :loading="active!==index ? 'lazy' : 'eager'" :src="fullscreen ? image.full : image.img" x-transition.opacity.duration.500ms x-show="active===index" />calcActive())">
McKesson - Authorized Distributor
PRODUCT HIGHLIGHTS
- Available individually or in bulk
- Resists sticking to skin
- Constructed with open mesh, knitted fabric
- Minimizes risk of maceration and occlusion
- Trim to desired size
- Fast 1-3 day shipping
- Easy returns
- AutoShip eligible
free shipping on $49+ -
Low Returns
High Returns
Item# | Description | Size | Price |
---|---|---|---|
61-77041 | 3 x 3 Inch Fast 1-3 Day Shipping! | Each | List Price: $0.52 Price: $0.46 |
61-77041 | 3 x 3 Inch Fast 1-3 Day Shipping! | Box of 50 | List Price: $25.39 Price: $22.60 |
61-77041 | 3 x 3 Inch Fast 1-3 Day Shipping! | Case of 600 | List Price: $270.64 Price: $240.87 |
61-77042 | 3 x 8 Inch Fast 1-3 Day Shipping! | Each | List Price: $1.04 Price: $0.93 Out of Stock Sign up for stock alerts |
61-77042 | 3 x 8 Inch Fast 1-3 Day Shipping! | Box of 24 | List Price: $25.10 Price: $22.34 Out of Stock Sign up for stock alerts |
61-77042 | 3 x 8 Inch Fast 1-3 Day Shipping! | Case of 144 | List Price: $150.36 Price: $133.82 Out of Stock Sign up for stock alerts |
'); // Update the button state to indicate that the modal is created for this button buttonStates[productId] = { modalCreated: true, modalId: modalId }; // Wait for the next event loop to ensure the DOM is updated setTimeout(resolve, 0); }); } // Function to interact with the autoship modal function interactWithModal(productId) { // Use the unique modal identifier var modalId = buttonStates[productId].modalId; // Find the optinSelect within the modal var optinSelect = document.querySelector('#' + modalId + ' og-offer og-select-frequency'); if (optinSelect && optinSelect.shadowRoot.querySelector('og-select')) { optinSelect.shadowRoot.querySelector('og-select').shadowRoot.querySelector('select').value = '1_3'; optinSelect.shadowRoot.querySelector('og-select').shadowRoot.querySelector('select').dispatchEvent(new Event('change')); var formSelector = '#' + modalId + ' form[data-role="toautoship-form_' + productId + '"]'; if (document.querySelector(formSelector + ' button')) { document.querySelector(formSelector + ' button').click(); } } }
Stock Alert for ""
Enter you email below and we will notify you when item becomes available.
Customers Also Bought
Description
McKesson Oil Emulsion Dressing Overview
The McKesson Oil Emulsion Impregnated Dressing is designed with a unique blend of emulsified USP Petrolatum, which is compatible with other treatments. The McKesson Oil Emulsion Non-Adherent Dressing resists sticking to the skin to enhance patient comfort. It is constructed with an open mesh, knit fabric that minimizes the risk of maceration and occlusion. It can be trimmed to the desired size without shredding or unraveling. This emulsion dressing is latex-free, designed for single use, and available in two sizes: 3 x 3 inches and 3 x 8 inches.
Product Features and Benefits
- Resistant to sticking to the skin
- Minimal maceration and occlusion
- Trimmed without shredding or unraveling
- Infused with a blend of emulsified USP Petrolatum
Product Specifications
- Manufacturer: McKesson
- Product Numbers: 61-77041, 61-77042
- Sizes: 3 x 3 inches, 3 x 8 inches
- Color: White
- Material: Acetate Gauze
- Sterility: Sterile
- Application: Oil Emulsion Impregnated Dressing
- Latex-Free: Yes
- UNSPSC Code: 42311524
Related Products
Other available oil emulsion-impregnated dressings include the Curity Non-Adherent Dressing with Oil Emulsion and the Shur-Conform Oil Emulsion Non-Adhering Dressing, on sale at Vitality Medical today.
Order the McKesson Oil Emulsion Dressing now to ensure patient comfort and effective treatment.
Additional Information
Manufacturer | McKesson |
---|---|
FSA / HSA | No |
Customer Reviews
Questions & Answers
' + 'Save ' + discountAmount + ' with Auto-ship ' + intervalLabel + ' which comes to ' + perOrderPrice + ' per order and ' + totalOrderPrice + ' in total during whole subscription period.' + '
'; } if (htmlContent) { document.querySelector(".subscription-savings-calculator").style.display = 'block'; } document.getElementById("saving-calculator").innerHTML = htmlContent; }, /* Calculate the number of occurrences */ calculateOccurrences(frequencyIntervalData) { let startDateObj = new Date(document.getElementById("md_subscription_start").value); let endDateObj = new Date(document.getElementById("md_subscription_end").value); let frequency = frequencyField.value; let frequencyInterval = 0; if (document.getElementById("end_by_cycle").checked) { return parseInt(document.getElementById("md_subscription_cycle").value); } else if (document.getElementById("infinite").checked) { let currentYear = parseInt(startDateObj.getFullYear()); frequencyInterval = frequencyIntervalData[frequency].no_of_interval; frequency = frequencyIntervalData[frequency].interval_type; endDateObj = new Date(currentYear + 1, startDateObj.getMonth(), startDateObj.getDate()); } else if (document.getElementById("end_by_date").checked) { if (frequencyIntervalData.hasOwnProperty(frequency)) { frequencyInterval = frequencyIntervalData[frequency].no_of_interval; frequency = frequencyIntervalData[frequency].interval_type; } } let recurringDates = this.recurringDates(startDateObj, endDateObj, frequency, frequencyInterval); /* Return the number of occurrences */ return recurringDates.length; }, /* Calculate recurring dates based on start and end dates, interval type, and value */ recurringDates(startDate, endDate, intervalType, intervalValue) { const recurringDates = []; let currentDate = new Date(startDate); intervalValue = parseInt(intervalValue); while (currentDate <= endDate) { recurringDates.push(new Date(currentDate)); switch (intervalType) { case 'day': currentDate.setDate(parseInt(currentDate.getDate()) + intervalValue); break; case 'week': currentDate.setDate(parseInt(currentDate.getDate()) + (7 * intervalValue)); break; case 'month': currentDate.setMonth(parseInt(currentDate.getMonth()) + intervalValue); break; case 'year': currentDate.setFullYear(parseInt(currentDate.getFullYear()) + intervalValue); break; default: throw new Error('Invalid interval type'); } } /* Return array of recurring dates */ return recurringDates; }, /* Initialize savings calculator and update on relevant changes */ initSavingsCalculate() { let self = this; function updateSavings() { if (document.querySelectorAll(".plan-attribute.savings-calculator").length > 0) { let discountData = JSON.parse(hiddenInput.value); let discountType = discountData.discount_type; let discountAmount = discountData.discount; self.savingsCalculate(discountAmount, discountType); } } /* Event listener for relevant changes */ document.querySelectorAll("#end_by_cycle, #infinite, #end_by_date, #md_subscription_start, #md_subscription_cycle, #md_subscription_end").forEach(function(element) { element.addEventListener('change', updateSavings); }); } } }More Items to Explore