IV Track
IV Track – 1100IV
Durable
Heavy-gauge anodized aluminum: 1-7/16″w x 15/16″h.
Finished
Available in satin anodized or white powder coat finish.
Bend
Standard bend: 12″ radius
Carrier
Designed to receive our NC100 Non-Conductive Carrier.
We are offering the following selections :
Cube Care IV Track – 1100 IV
A heavy gauge extruded aluminum and available in satin anodized or white powder coat finish. Our IV track has standard 12″ radius corners and is designed to fit hospital room layouts. Typical layouts are oval, straight, or U-shaped.
IV Track Carrier
Self-lubricating and maintenance-free. All nylon wheels. Locks in place with single 180-degree twist.
Questions are good answers are BETTER !
Did not find what you are looking for ?
Please contact us at 305-556-8700 or click “Contact Us” button below to chat/send email.
One of our customer care associates will be available help you between the hours of 8-5 eastern standard time.
Thank you for visiting our site.
[insert_php]
//MODIFICAR EN VALOR DE LA VARIABLE $slug POR EL SLUG DE LA CATEGORIA QUE SE DESEA BUSCAR
$slug = ‘standard-iv-system’;
$tax_query = array();
$filtro = array(
‘taxonomy’ => ‘product_cat’,
‘field’ => ‘slug’,
‘terms’ => $slug
);
array_push( $tax_query, $filtro );
$args = array(
‘post_type’ => ‘product’,
‘post_status’ => ‘publish’,
‘tax_query’ => $tax_query,
‘posts_per_page’ => -1,
‘orderby’ => array(
‘nom_clause’ => ‘ASC’
)
);
$products_query= new WP_Query( $args );
if ( ! $products_query->have_posts() ) {
//echo “NADA COMPA”;
echo ‘
‘;
}
else {
foreach ($products_query->posts as $prod) {
/*==========================*/
$img = get_the_post_thumbnail_url( $prod->ID );
$_product = wc_get_product( $prod->ID );
$precio = $_product->get_price();
$link = get_permalink($prod->ID);
echo ‘
‘;
echo ‘
‘;
echo ‘
‘.$prod->post_content.’
View Details>>
‘;
echo ‘
‘;
/*==========================*/
}
}
[/insert_php]