Future Emirates

Start typing to see product suggestions.

Product Page
Eighteenth

Loading Product...

12 sold in last 15 hours
Dhs. 0.00 AED
Estimate delivery times: 1-2 days within UAE.
Use code 'BIOWELCOMES' for discount 5% on your first order.
Free shipping: On all orders over Dhs. 150 AED.
23 peoples are viewing this right now
Product link copied to clipboard!
Class B Autoclave Fomos Foster

Fomos
Class B Autoclave Foster

Compact Design. Complete Control. Dependable Sterilization

Smart Control Compact Design Double Safety

Class B Autoclave Fomos Foster Overview

The Foster Class B autoclave combines advanced technology with user-friendly features to deliver professional sterilization results for clinics of all sizes. With its wide-angle LCD color display and touch keys, daily operation becomes intuitive and simple. The double door locking system ensures safety at every stage, while the robust stainless steel chamber promises durability and reliability in busy healthcare settings.

This autoclave is designed to support efficient clinical workflows through a suite of intelligent functions. Features like one-click program upgrades, fault self-diagnosis, and a real-time program curve display make monitoring and maintaining the device effortless. The reservation function further enhances convenience by allowing users to pre-schedule cycles according to their practice’s needs.

Engineered for maximum performance, the Foster sterilizer delivers 99% saturated steam for thorough sterilization and uses an all-inclusive heating loop for superior drying results. Built-in printer and USB options allow for comprehensive record keeping, making compliance with sterilization documentation seamless. Its compact dimensions, combined with powerful features, make it ideal for dental, medical, and beauty clinics that value safety, speed, and operational transparency. For more information, click here.

Technical Specifications

Model
Foster
Volume
12L
Chamber Dimensions
200 mm × 368 mm
Device Dimensions
566 mm (W) × 408 mm (H) × 425 mm (D)
Net Weight
42 KG
Package Size
710 mm × 550 mm × 525 mm
Power
AC110/220V-1800 W

Key Features of Class B Autoclave Fomos Foster

LCD Color Display

Wide-angle screen with soft light and responsive touch keys for intuitive use.

Double Door-Locking System

Enhanced safety with a secure and reliable locking mechanism.

One-Click Program Upgrade

Easy and fast software updates for continuous improvement.

Self-Test Function

One-click fault self-test for quick component diagnostics.

Real-Time Curve Monitoring

Dot matrix trend view shows the sterilization process clearly.

Reservation Function

Allows programming in advance for efficient workflow.

High Steam Saturation

99% saturated steam ensures deep and effective sterilization.

All-Inclusive Heating Loop

Delivers drier instruments after each cycle.

Customer Reviews

Dr. Emily R.

"This autoclave is fantastic! The touchscreen is super easy to use and the sterilization cycles are quick and reliable. Our clinic workflow has definitely improved."

Medical Practice X

"A solid, dependable autoclave. The safety features are reassuring and the remote upgrade is a convenient touch. Drying could be slightly more consistent for very dense loads."

Leave a Review

Documents & Downloads

Find essential documents and resources for Class B Autoclave Fomos Foster below.

document.addEventListener('DOMContentLoaded', function() { const sidebarLinks = document.querySelectorAll('.dt-sidebar-nav a'); const contentSections = document.querySelectorAll('.dt-scrollable-content-area .dt-content-section'); const starRatingInputContainer = document.querySelector('.dt-star-rating-input'); // Using a more specific ID to avoid potential conflicts with 'name' attribute const hiddenRatingInput = document.getElementById('review-rating-input'); const reviewForm = document.querySelector('.dt-review-form'); /** * Activates a specific content section and highlights its corresponding sidebar link. * @param {string} targetId - The ID of the section to activate (e.g., "#dt-overview-section"). */ function activateSection(targetId) { // Deactivate all sidebar links sidebarLinks.forEach(link => link.parentElement.classList.remove('active')); // Deactivate all content sections contentSections.forEach(section => section.classList.remove('active')); // Activate the target content section const targetSection = document.querySelector(targetId); if (targetSection) { targetSection.classList.add('active'); // Scroll the window to the target section // Adjust offset for sticky headers/Elementor admin bar if present const offsetTop = targetSection.getBoundingClientRect().top + window.pageYOffset; window.scrollTo({ top: offsetTop - 80, // Example offset, adjust as needed (e.g., for sticky headers) behavior: 'smooth' }); } // Activate the corresponding sidebar link const correspondingLink = document.querySelector(`.dt-sidebar-nav a[href="${targetId}"]`); if (correspondingLink) { correspondingLink.parentElement.classList.add('active'); } } // Event listener for sidebar navigation clicks sidebarLinks.forEach(link => { link.addEventListener('click', function(e) { e.preventDefault(); // Prevent default anchor jump const targetId = this.getAttribute('href'); activateSection(targetId); }); }); // Intersection Observer to highlight sidebar link based on scroll position // Configured to observe the entire viewport (root: null) for full page scroll. const observerOptions = { root: null, // Use the viewport as the root rootMargin: '0px 0px -50% 0px', // Trigger when section is in the middle of the viewport threshold: 0.1 // A small threshold to make it active early }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const sectionId = '#' + entry.target.id; const correspondingLink = document.querySelector(`.dt-sidebar-nav a[href="${sectionId}"]`); // Only update if it's not already active to prevent flickering if (correspondingLink && !correspondingLink.parentElement.classList.contains('active')) { sidebarLinks.forEach(link => link.parentElement.classList.remove('active')); // Deactivate all others correspondingLink.parentElement.classList.add('active'); // Activate current } } }); }, observerOptions); // Observe each content section contentSections.forEach(section => { observer.observe(section); }); // Initial activation: Ensure the first section is active and corresponding sidebar link is highlighted on page load // This runs after the DOM is ready and the observer is set up. if (sidebarLinks.length > 0 && contentSections.length > 0) { // Use a slight delay to allow the layout to render and IntersectionObserver to kick in naturally. setTimeout(() => { const currentActiveSection = document.querySelector('.dt-content-section.active'); // Only if no section is currently active by IntersectionObserver (e.g., page loads at the very top) if (!currentActiveSection && sidebarLinks[0]) { activateSection(sidebarLinks[0].getAttribute('href')); } }, 100); } // --- Static Star Rating Form Logic (using event delegation) --- if (starRatingInputContainer && hiddenRatingInput) { starRatingInputContainer.addEventListener('mouseover', function(e) { if (e.target.tagName === 'I' && e.target.dataset.rating) { highlightStars(e.target.dataset.rating); } }); starRatingInputContainer.addEventListener('mouseout', function() { highlightStars(hiddenRatingInput.value); }); starRatingInputContainer.addEventListener('click', function(e) { if (e.target.tagName === 'I' && e.target.dataset.rating) { const rating = e.target.dataset.rating; hiddenRatingInput.value = rating; highlightStars(rating); } }); /** * Highlights the star icons based on the given rating. * @param {number} rating - The rating value to highlight up to. */ function highlightStars(rating) { const stars = starRatingInputContainer.querySelectorAll('i'); stars.forEach(star => { if (parseInt(star.dataset.rating) 0) { highlightStars(hiddenRatingInput.value); } } // --- Review Form Submission Logic --- if (reviewForm) { reviewForm.addEventListener('submit', function(e) { e.preventDefault(); // Prevents the form from actually submitting and reloading the page const nameInput = document.getElementById('review-name'); const emailInput = document.getElementById('review-email'); const reviewTextInput = document.getElementById('review-text'); const rating = hiddenRatingInput ? hiddenRatingInput.value : 0; // Ensure hiddenRatingInput exists if (nameInput.value && emailInput.value && reviewTextInput.value && parseInt(rating) > 0) { alert(`Thank you, ${nameInput.value}! Your review (Rating: ${rating}/5) has been submitted. This is a static demo.`); reviewForm.reset(); // Clear the form after "submission" if (hiddenRatingInput) { hiddenRatingInput.value = 0; // Reset hidden input value highlightStars(0); // Reset stars } } else { alert('Please fill in all fields and provide a rating before submitting.'); } }); } });
Elmanor - Product Comparison

Featured Products

Select 2-4 items to compare

Loading products...
Selected
0
items for comparison
Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Additional information
Click outside to hide the comparison bar
Compare