Rumipro Bolus for Ruminant Digestive Care

Rumipro

Rumipro is a poly herbal formulation mixed with Prebiotics and Probiotics (Syn biotic).

Available in

  • 20 * 6 boli strips

Target Species

  • Cow

    Cow

  • Buffalo

    Buffalo

  • Sheep

    Sheep

  • Goat

    Goat

  • Camel

    Camel

Leave us your details

Please select country to send your deatils.

// Track total time across pages let totalTime = 0; // Time in seconds let popupShown = false; // To make sure popup shows only once // Check if time is already stored in localStorage to persist across pages if (localStorage.getItem('timeSpent')) { totalTime = parseInt(localStorage.getItem('timeSpent')); } // Increment time every second setInterval(() => { if (!popupShown) { totalTime += 1; // Increment total time by 1 second localStorage.setItem('timeSpent', totalTime); // Store updated time // If total time reaches 15 seconds, trigger the popup if (totalTime >= 15 && !popupShown) { // Replace '123' with your actual Popup ID from Popup Maker PUM.open(6168); popupShown = true; // Ensure the popup is shown only once } } }, 1000); // Run every 1000ms (1 second)