CINXE.COM
Liver Analysis Solution | Samsung Healthcare Global
<!doctype html> <html lang="en"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8"> <meta name="viewport" id="viewport" content="initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,width=device-width,user-scalable=no" /> <meta name="google-site-verification" content="SwRepWwIKuWKHeLNN5FGPTmCi9rSpEXtT7rAp_DHtlE" /> <meta name="format-detection" content="telephone=no"/> <!-- 2022-06-14 추가 수정 s : 2021 => 2022 --> <meta name="keywords" content="samsung, samsung value up package 2022, data analytics solution, DR monitoring solution, centralized device and user management system, reject analysis, dose analysis, productivity analysis, detector shock analysis, detector shock alarm"> <meta name="description" content="SMART Center is an enterprise-level quality and asset monitoring solution which aggregates data from multiple Samsung Digital Radiography devices into one easy-to-use platform."> <title>Liver Analysis Solution | Samsung Healthcare Global</title> <!-- //2022-06-14 추가 수정 e--> <link rel="stylesheet" type="text/css" href="/resources/_inc/css/common.css"> <link rel="stylesheet" type="text/css" href="/resources/_inc/css/sub.css"> <link rel="stylesheet" type="text/css" href="/resources/_inc/css/valueup-package.css"> <link rel="stylesheet" type="text/css" href="/resources/_inc/css/LiverSolution.css"> <script type="text/javascript" src="/resources/_inc/js/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="/resources/_inc/js/common.js"></script> <script type="text/javascript" src="/resources/_inc/js/ipArr.js?ver=1"></script> <link rel="shortcut icon" href="/resources/_img/common/favicon.ico"> <meta property="og:url" content="https://www.samsunghealthcare.com/en" /> <meta property="og:title" content="Liver Analysis Solution | Samsung Healthcare Global" /> <meta property="og:description" content="Samsung liver ultrasound analysis solution is available to track from the beginning to Post-op follow ups, covering wide range of liver disease including liver cancer, fatty liver and fibrosis of liver, etc." /> <meta property="og:image" content="https://www.samsunghealthcare.com/resources/_img/common/thumnail_en_200.jpg" /> <link rel="canonical" href="https://samsunghealthcare.com/en/LiverAnalysisSolution" /> </head> <body> <form id="form"> <input type="hidden" id="productId" name="productId" value=""> <input type="hidden" id="productTabId" name="productTabId" value=""> <input type="hidden" id="depth_gb" name="depth_gb" value=""> <input type="hidden" id="document_id" name="document_id" > <input type="hidden" id="product_id" name="product_id" > <input type="hidden" id="downloadType" name="downloadType" > </form> <form id="serviceRequestForm"> <input type="hidden" id="productCategoryCode" name="productCategoryCode" value=""> <input type="hidden" id="serviceRequestProductId" name="serviceRequestProductId" value=""> </form> <form id="purchaseRequestForm"> <input type="hidden" id="productCategoryCode2" name="productCategoryCode2" value=""> <input type="hidden" id="serviceRequestProductId2" name="serviceRequestProductId2" value=""> </form> <script type="text/javascript"> var lang = 'en'; function productAll(){ var form = document.getElementById("form"); form.action = "/"+ lang +"/products"; form.method = "POST"; form.submit(); } function productLoadMore(tabId){ var form = document.getElementById("form"); $("#productTabId").val(tabId); var productName = ""; var categoryName = ""; if(tabId == "uss") { form.action = "/"+ lang +"/products/UltrasoundSystem"; } else if(tabId == "dxr") { form.action = "/"+ lang +"/products/DigitalRadiography"; } else if(tabId == "pct") { form.action = "/"+ lang +"/products/PortableCT"; } else if(tabId == "ivd") { form.action = "/"+ lang +"/products/InVitroDiagnostics"; } form.method = "POST"; form.submit(); } function pdfDownload(data) { var url = "/"+ lang +"/transduces_Download"; var inputs = '<input type="hidden" name="pdfFile" value="'+data+'"/><input type="hidden" name="lang" value="'+ lang +'"/><input type="hidden" name="fileGroup" value="'+data+'"/>'; jQuery('<form action="'+ url +'" method="post">'+ inputs +'</form>').appendTo('body').submit().remove(); } function loginCheck(document_id){ $("#document_id").val(document_id); $.ajax({ type : "POST" , async : true , url : "/"+lang+"/user/loginCheck" , dataType : "json" , cache : false , data : {"document_id":document_id} , contentType: "application/x-www-form-urlencoded; charset=UTF-8" , success : function(data) { setLoginAjax(download,data); } , error : function(request,status,error){ //alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error); alert("Available after logging in"); $("#loginModal").modal("show"); } }); } function download(data){ var data = "document_id="+ data.document_id +"&downloadType=white_paper"; $.jQueryDownload("/"+ lang +"/user/download", data, "post"); } jQuery.jQueryDownload = function(url, data, method){ if (url && data) { data = typeof data == 'string' ? data:jQuery.param(data); var inputs = ''; jQuery.each(data.split('&'), function(){ var pair = this.split('='); inputs += '<input type="hidden" name="'+ pair[0] +'" value="'+ pair[1] +'"/>'; }); jQuery('<form action="'+ url +'" method="'+ (method||'post') +'">'+ inputs +'</form>').appendTo('body').submit().remove(); } }; function loginCheck2(product_id, downloadType){ $("#product_id").val(product_id); $("#downloadType").val(downloadType); $.ajax({ type : "POST" , async : true , url : "/"+lang+"/user/loginCheck" , dataType : "json" , cache : false , data : {"product_id":product_id, "downloadType":downloadType} , contentType: "application/x-www-form-urlencoded; charset=UTF-8" , success : function(data) { setLoginAjax(download2,data); } , error : function(request,status,error){ alert("Available after logging in"); $("#loginModal").modal("show"); } }); } function download2(data){ var data = "product_id="+ data.product_id +"&downloadType="+data.downloadType; $.jQueryDownload("/"+ lang +"/user/download", data, "post"); } function openSignUp(){ location.href = "/" + lang + "/basic_information"; } function login(){ if ( $("#remember").is(":checked") ) { // Save 체크시 saveLogin($("#header_id").val()); } else { // 체크 해제시는 공백 saveLogin(""); }//end if if ( validation() ) { $.ajax({ type : "POST" , async : true , url : "/" + lang + "/user/auth_process" , dataType : "json" //"xml", "html", "script", "json" , cache : false , data : $("#loginForm").serialize() , contentType: "application/x-www-form-urlencoded; charset=UTF-8" , success : function(data) { if ( data.msg === "fail" ) { } else if ( data.msg === "success" ) { $("#loginModal").modal("hide"); $("#loginBefore").hide(); $("#loginAfter").show(); $("#loginAfterTimer").show(); //모바일 $("#mobile_loginBefore").hide(); $("#mobile_loginAfter").show(); $("#mobile_loginAfter_timer").show(); $('.btn_logout').show(); if ( data.user_type === '104001003001' ) { $('.vip').show(); $('.link_vip').show(); } if($("#document_id").val() != null && $("#document_id").val() != ""){ var data = {"document_id":$("#document_id").val()}; download(data); } else if($("#product_id").val() != null && $("#product_id").val() != ""){ var data = {"product_id":$("#product_id").val(), "downloadType":$("#downloadType").val()}; download2(data); } if ( data.type === "url" ) { location.href=data.result; } } else if( data.msg=="standby" ) { //인증대기 $("#loginModal").modal("hide"); $("#EmailModal").modal("show"); //인증메일 재발송 팝업 userIdForResendEmail = data.userId; } else { alert("Error processing, please try again."); } } , beforeSend: function() { } , complete: function(xhr) { } , error : function(request,status,error){ //alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error); } }); } } /** * saveLogin * 로그인 정보 Save * @param id */ function saveLogin(id) { if ( id !== "" ) { setSave("user_id", id, 7); // userid 쿠키에 id 값을 7일간 Save } else { setSave("user_id", id, -1); // userid 쿠키 Delete } } /** * setSave * Cookie에 user_id를 Save * @param name * @param value * @param expiredays */ function setSave(name, value, expiredays) { var today = new Date(); today.setDate( today.getDate() + expiredays ); document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + today.toGMTString() + ";" } function validation(){ var header_id = document.getElementById("header_id"); if ( header_id.value.length <= 0 ) { alert("Please enter the ID."); return false; } if ( header_id.value.length < 4 || header_id.value.length > 25 ) { alert("ID is too short or too long -Length should be 4 to 25 characters."); return false; } var header_pw = document.getElementById("header_pw"); if ( header_pw.value.length <= 0 ) { alert("Please enter a password."); return false; } if ( header_pw.value.length < 8 ) { alert("Password is too short - Length should be more than 8 characters."); return false; } return true; } function setLoginAjax(func,data){ if ( data.msg === "ajax" ) { func(data); ajaxFunction = null; } else if ( data.msg === "login" ) { ajaxFunction = func; $("#loginModal").modal("show"); } } function ajaxTest(args1, args2){ $.ajax({ type : "POST" , async : true , url : "/"+lang+"/user/ajax" , dataType : "json" , cache : false , data : $("#loginForm").serialize() , contentType: "application/x-www-form-urlencoded; charset=UTF-8" , success : function(data) { setLoginAjax(alertTest,data); } , error : function(request,status,error){ //alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error); } }); } </script> <!-- Liver Solution Content s --> <link href="/resources/_inc/css/slick.css" rel="stylesheet" type="text/css"> <div id="wrapper" class="LiverSolution "> <div class="page-init-dim"></div> <div class="header"> <div class="header-top"> <h1 class="hidden">ultrasound for liver disease</h1><!--2023-12-20 SEO 추가 --> <p class="info"><a href="/en/LiverAnalysisSolution">Liver Analysis Solution</a></p> <p class="logo"><a href="/en">SAMSUNG</a></p> <!-- <div class="action"> <a href="javascript:void(0);" onclick="javascript:loginCheck('en/contact?utm_source=website&utm_medium=banner&utm_campaign=valueup_free_demo'); return false;" target="_blank" class="btn-request">Free Demo Request</a> </div> --> </div> </div> <div class="visual"> <div class="text_area"> <div class="section_inner"> <h2 class="visual_title">Liver Analysis Solution</h2> <p class="text"> Advanced liver analysis solution to<br class="br-xsm"> provide <br class="br-sm br-md br-lg"> comprehensive liver <br class="br-xsm br-sm">assessment and clarification needed </p> </div> </div> </div> <div class="nav-page"> <div class="section_inner"> <div class="nav-page-slider"> <ul> <li><span><a href="#QuickLiver">Quick statistics on liver disease</a></span></li> <li><span><a href="#LiverAnalysisSolution">Samsung Liver Analysis Solution</a></span></li> <li><span><a href="#ClinicalVideos">Clinical Videos</a></span></li> <li><span><a href="#SupportedSystems">Supported Systems</a></span></li> <li><span><a href="#RelatedPapers">Related Papers</a></span></li> </ul> <div class="pos-bar"></div> </div> </div> </div> <section id="QuickLiver" class="page-section page-block"> <div class="section_inner"> <h2 class="section_title">Quick statistics on liver disease</h2> <h3 class="sub_title">Global statistics of liver cancer</h3> <!-- 2022-08-10 수정 s --> <p class="sentence">Cancer is a leading cause of death worldwide, accounting for about 10 million deaths in the year 2020 <sub>[1]</sub>. Liver cancer is a global burden, the 6th most common cancer, and about 900,000 people are diagnosed each year <sub>[2]</sub>. Moreover, according to the WHO, liver cancer is marked 3rd most common cause of cancer death in 2020 (830,000 deaths) <sub>[1]</sub>.</p> <div class="graph_section img_wrap"> <!-- 2023-12-20 SEO s --> <div class="swipe_wrap"> <img src="/resources/_img/sub/LiverSolution/QuickLiver_graph_ready.png" data-animated="/resources/_img/sub/LiverSolution/QuickLiver_graph.gif" data-static="/resources/_img/sub/LiverSolution/QuickLiver_graph_ready.png" class="ani_gif" alt="liver cancer statistics "> </div> <!-- //2023-12-20 SEO e --> <p class="img_caption">The most common causes of cancer deaths in 2020 <sub>[1]</sub></p> </div> <!-- //2022-08-10 수정 e --> <h3 class="sub_title">1 in 4 of global population have NAFLD </h3> <div class="row"> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/QuickLiver_img.png" alt="NAFLD statistics"><!--2023-12-20 SEO--> </div> <p class="sentence"> <strong>Non-Alcoholic Fatty Liver Disease (NAFLD)</strong> is an umbrella term that encompasses a spectrum of disorders, such as fat deposits in the liver, steatohepatitis, liver fibrosis, and cirrhosis, which can be found during an ultrasound and liver biopsy and are neither caused by alcohol consumption nor accompanied by other disorders. <br><br> Recent figures show that the prevalence of NAFLD in Asia and the USA is approximately 30%, while its global prevalence is approximately 25% <sub>[4]</sub>. <br><br> Fat deposits in the liver can increase the chances of triggering inflammatory responses and also lead to liver fibrosis. Hence, it is important to continuously monitor the liver once the patient is diagnosed with fatty liver disease. </p> </div> <div id="liver_analysis_solution"></div> </div><!--//section_inner--> </section> <!--//section--> <section id="LiverAnalysisSolution" class="page-section page-block"> <div class="section_inner"> <h2 class="section_title">Liver Analysis Solution</h2> <p class="sub_title">Our liver analysis solution is available to track from the beginning to Post-op follow ups, covering wide range of liver disease. </p> <!-- 2023-12-20 SEO s--> <div class="graph_section img_wrap"> <div class="swipe_wrap view-xsm"> <img src="/resources/_img/sub/LiverSolution/LiverAnalysisSolution_graph3.png" alt="liver diagnosis Solutions"> </div> <img src="/resources/_img/sub/LiverSolution/LiverAnalysisSolution_graph_ready.png" alt="liver diagnosis Solutions" data-animated="/resources/_img/sub/LiverSolution/LiverAnalysisSolution_graph3.gif" data-static="/resources/_img/sub/LiverSolution/LiverAnalysisSolution_graph_ready.png" class="view-sm view-md view-lg ani_gif"> </div> <!-- //2023-12-20 SEO e--> </div><!--//section_inner--> <div class="graph_contents fattyLiver"> <h3 class="title_bar">Fatty Liver</h3> <div class="section_inner"> <h4 class="icon_title EzHRI">Hepato-renal index (bright comparison) <br class="br-lg"> with automated ROI recommendation</h4> <p class="sentence"><strong class="bold">EzHRI™</strong> places 2 ROIs on the liver parenchyma and renal cortex and provides HRI* ratio. It offers convenience and an improved workflow by suggesting initial ROIs, calculates the average brightness ratio of the liver parenchyma and the renal cortex. </p> <!-- 2023-12-20 SEO s --> <div class="half_wrap"> <div class="half img_wrap"> <img src="/resources/_img/sub/LiverSolution/fattyLiver_img1.png" alt="EzHRI™ : Normal liver ultrasound images"> </div> <div class="half img_wrap"> <img src="/resources/_img/sub/LiverSolution/fattyLiver_img2.png" alt="EzHRI™ : ultrasound images of fatty liver"> </div> </div> <!-- //2023-12-20 SEO e --> <dl class="ref_wrap"> <dt class="ref">HRI : Hepato-Renal Index</dt> <dd class="sentence">The Hepatorenal Index, the brightness ratio of the liver parenchyma over the renal cortex is used to classify abnormal fatty liver.</dd> </dl> <div class="btn_wrap"> <a href="https://doi.org/10.14366/usg.20179" target="_blank" class="btn">White Paper [5]</a> <a href="javascript:loginCheck('315');" class="btn btn_download">Tech Leaflet</a> </div> <h4 class="icon_title TAI"> Quantitative tissue attenuation measurement <br class="br-lg"> to assess steatotic liver changes </h4> <p class="sentence"><strong class="bold">TAI™ (Tissue Attenuation Imaging)</strong> is a tool that quantitatively measures the attenuation of ultrasound signals received from the liver. TAI™ quantifies attenuation based on changes in the center frequency under the optimal transmission and reception conditions. </p> <!-- 2023-12-20 SEO s --> <div class="half_wrap"> <div class="half img_wrap"> <img src="/resources/_img/sub/LiverSolution/fattyLiver_img3.png" alt="TAI™ : normal liver on ultrasound"> </div> <div class="half img_wrap"> <img src="/resources/_img/sub/LiverSolution/fattyLiver_img4.png" alt="TAI™ : fatty liver images ultrasound"> </div> </div> <!-- //2023-12-20 SEO e --> <div class="btn_wrap"> <a href="https://doi.org/10.1016/j.ultrasmedbio.2020.11.009" target="_blank" class="btn">White Paper [6]</a> <a href="https://doi.org/10.14366/usg.20042" target="_blank" class="btn">White Paper [7]</a> </div> <h4 class="icon_title TSI"> Quantitative tissue scatter distribution <br class="br-lg"> measurement to assess steatotic liver changes </h4> <p class="sentence"> <strong class="bold">TSI™ (Tissue Scatter Distribution Imaging)</strong> is a tool that quantifies the scattered signal distribution based on backscattered signals. Scattering, the reflection of ultrasound waves in multiple directions not affected by their entry angle, produces speckle patterns in ultrasound images and this changes the distribution of backscattered ultrasound signals based on the scattering intensity. </p> <!-- 2023-12-20 SEO s --> <div class="half_wrap"> <div class="half img_wrap"> <img src="/resources/_img/sub/LiverSolution/fattyLiver_img5.png" alt="TSI™ : Normal liver ultra sound image"> <div class="img_caption"></div> </div> <div class="half img_wrap"> <img src="/resources/_img/sub/LiverSolution/fattyLiver_img6.png" alt="TSI™ : fatty liver ultrasound image"> <div class="img_caption"></div> </div> </div> <!-- //2023-12-20 SEO e --> <div class="btn_wrap"> <a href="https://doi.org/10.3348/kjr.2020.1262 " target="_blank" class="btn">White Paper [8]</a> </div> </div><!--//section_inner--> </div><!--//graph_contents--> <div class="graph_contents liverFibrosis"> <h3 class="title_bar">Liver Fibrosis</h3> <div class="section_inner"> <h4 class="icon_title S-Shearwave"> Provide non-invasive assessment of the tissue <br class="br-lg"> stiffness in patient with cirrhotic and fibrous livers </h4> <div class="half_wrap"> <div class="half text_area"> <p class="sentence"> <strong class="bold">S-Shearwave Imaging™</strong> allows for non-invasive assessment of the stiffness of tissue/lesions liver. The color-coded elastogram, quantitative measurements, dual or single display option, and user-selectable ROI functions are especially useful for the accurate diagnosis liver diseases. </p> <div class="btn_wrap"> <a href="javascript:loginCheck2('V8_S-Shearwave_Imaging_Liver_White_Paper.pdf', 'direct_PDF');" class="btn btn_download">White Paper</a> </div> </div> <div class="half img_area"> <div class="img_slide"> <div class="slide_list"> <div class="slide_cell "> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/S-Shearwave_img1.png" alt=" S-Shearwave Imaging™ : liver diagnosis Solutions"><!--2023-12-20 SEO --> </div> </div> <!--//slide_cell--> <div class="slide_cell "> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/S-Shearwave_img2.png" alt=" S-Shearwave Imaging™ : liver diagnosis Solutions"><!--2023-12-20 SEO --> </div> </div> <!--//slide_cell--> </div><!--//slide_list--> <div class="slide_control"> </div> <div class="dots_area"></div> </div> <!--//img_slide--> </div> </div> </div> </div><!--//graph_contents--> <div class="graph_contents HCC"> <h3 class="title_bar">HCC</h3> <div class="section_inner"> <h4 class="icon_title CEUS"> Contrast Enhanced Ultrasound</h4> <div class="half_wrap"> <div class="half text_area"> <p class="sentence"> <strong class="bold">CEUS+</strong> is a contrast enhancement imaging technology that utilizes the characteristics of ultrasound contrast agents. The microbubble contrast agent injected into the body through the vein or alike is subjected to perform nonlinear resonance due to stimulation of ultrasound energy. In addition to the nonlinear signal generated by this method, the ultrasound contrast image is implemented by using the harmonic signal and thus utilized for the diagnosis based on the contrast characteristics over time. </p> <div class="btn_wrap"> <a href="javascript:loginCheck('92');" class="btn">White Paper</a> </div> </div> <div class="half img_area"> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/HCC_CEUS_img.png" alt="CEUS+: contrast enhanced ultrasound"><!--2023-12-20 SEO --> </div> </div> </div> <h4 class="icon_title MV-Flow"> Visualize slow flow in microvascular structures </h4> <div class="half_wrap"> <div class="half text_area"> <p class="sentence"> <strong class="bold">MV-Flow™</strong> visualizes microcirculatory and slow blood flow to display the intensity in color. It is suitable for observation of microcirculatory and volume of slow blood flow. </p> </div> <div class="half img_area"> <div class="img_slide"> <div class="slide_list"> <div class="slide_cell "> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/HCC_MV-Flow_img1.png" alt="MV-Flow™ : Color imaging"><!--2023-12-20 SEO --> </div> </div> <!--//slide_cell--> <div class="slide_cell "> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/HCC_MV-Flow_img2.png" alt="MV-Flow™ : Color imaging"><!--2023-12-20 SEO --> </div> </div> <!--//slide_cell--> </div> <!--//slide_list--> <div class="slide_control"> </div> <div class="dots_area"></div> </div> <!--//img_slide--> </div> </div> </div> <!--//section_inner--> </div><!--//graph_contents--> <div class="graph_contents procedure"> <h3 class="title_bar">Procedure</h3> <div class="section_inner"> <h4 class="icon_title S-Fusion"> Perform multi-modality fusion biopsies with high precision</h4> <div class="half_wrap"> <div class="half text_area"> <p class="sentence"> <strong class="bold">S-Fusion™</strong> for liver enables simultaneous localization of a lesion using real-time ultrasound in conjunction with other volumetric imaging modalities. Samsung's auto registration helps quickly and precisely fuse the images, increasing efficiency and reducing procedure time. S-Fusion™ enables precise targeting during interventional and other advanced clinical procedures. </p> </div> <div class="half img_area"> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/procedure_S-Fusion_img.png" alt="S-Fusion™ : Performing fusion ultrasound fusion biopsies"><!--2023-12-20 SEO --> </div> </div> </div> <div class="diagram_section half_wrap"> <div class="diagram_area half"> <img src="/resources/_img/sub/LiverSolution/procedure_diagram.png" alt="S-Fusion Registration having fusion ultrasound biopsy methods "><!--2023-12-20 SEO --> </div> <div class="text_area half"> <div class="group matching"> <p class="sentence"> <strong class="bold">Matching Auto</strong> allows automatic initial registration by attaching external markers to the patient’s body before S-Fusion™ exam is processed, thus it helps quick and accurate exam. </p> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/procedure_img1.jpg" alt="Matching Auto using external marker for automatic initial registration"><!--2023-12-20 SEO --> </div> </div> <div class="group positioning"> <p class="sentence"> <strong class="bold">Positioning Auto</strong> helps quick and efficient examination with one-step initial registration between CT/MR and ultrasound images by positioning the transducer in the patient’s pit of the stomach before patient scan. </p> <div class="img_wrap"> <img src="/resources/_img/sub/LiverSolution/procedure_img2.png" alt="Positioning Auto using external marker for initial registration between CT/MR and ultrasound liver images"><!--2023-12-20 SEO --> </div> </div> </div> </div> <h4 class="icon_title S-Fusion"> Tool to provide needle path and target mark during <br class="br-lg"> interventional procedures </h4> <p class="sentence"> <strong class="bold">S-Tracking</strong> increases accuracy during interventional procedures by providing a simulated needle path and target mark within the live ultrasound image. Clear Track, one of two functions provided by S-Tracking, ensures accuracy by using a specialized needle with a sensor tip. S-Tracking also includes Virtual Track utilizing conventional needles to provide both accuracy and economic benefit. </p> <!--2023-12-20 SEO s--> <div class="half_wrap"> <div class="half img_wrap"> <img src="/resources/_img/sub/LiverSolution/procedure_S-Tracking_img1.png" alt="S Tracking for ultrasound needle guide"> </div> <div class="half img_wrap"> <img src="/resources/_img/sub/LiverSolution/procedure_S-Tracking_img2.png" alt="S-Tracking for interventional procedures"> </div> </div> <!--//2023-12-20 SEO e--> </div><!--//section_inner--> </div><!--//graph_contents--> </section> <!--//section--> <section id="ClinicalVideos" class="page-section page-block"> <div class="section_inner"> <h2 class="section_title">Clinical Videos</h2> <p class="sub_title">New Guidelines for Liver Stiffness Quantification</p> <div class="half_wrap"> <div class="half"> <a href="javascript:" class="pop_open" data-popup="videoPop"> <img src="/resources/_img/sub/LiverSolution/ClinicalVideos_img.png" alt="New guidelines for Liver Stiffness Quantification"><!---2023-12-20 SEO--> </a> <div class="pop_wrap" id="videoPop" style="display:none;"> <div class="pop_container"> <div class="pop_header"> <div class="pop_title">Clinical Videos</div> </div> <div class="pop_content"> <div class="videoContainer"> <iframe src="https://neurologica.wistia.com/medias/lkr95frrpn" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen="" frameborder="0"></iframe> </div> </div> <button type="button" class="pop_close"><span class="hidden">Close</span></button> </div> </div> </div> <div class="half"> <ul class="icon_list"> <li class="auther">Richard G. Barr MD, PhD, FACR, FSRU, FAIUM <br> Professor of Radiology <br> Northeastern Ohio Medical University </li> <li class="time">55:23</li> </ul> </div> </div> </div><!--//section_inner--> </section> <!--//section--> <section id="SupportedSystems" class="page-section page-block"> <div class="section_inner"> <h2 class="section_title">Supported Systems</h2> <div class="product-box"> <div class="productList"> <div class="productBox productSlide"> <ul class="clfix on"> <li class="item"> <dl> <dt><img src="/resources/_img/sub/product/sonosync_product_list_RS85prestige.jpg" alt="RS85 Prestige ultrasound machine"></dt><!--2023-12-20 SEO --> <dd>RS85 Prestige</dd> </dl> <div class="overlayer type01"> <!-- a 갯수에 따라 type01 ~ tyupe03 까지 개발에서 넣어주세요 --> <h3>RS85 Prestige</h3> <a href="/en/products/UltrasoundSystem/RS85%20Prestige/General%20Imaging/benefit" class="prodcutName"> <span class="shortName">GI</span> <span class="longName">General Imaging</span> </a> </a> </div> </li> <li class="item"> <dl> <dt><img src="/resources/_img/sub/product/sonosync_product_list_rs80_evo.jpg" alt="RS80 EVO ultrasound device"></dt><!--2023-12-20 SEO --> <dd>RS80 EVO</dd> </dl> <div class="overlayer type01"> <!-- a 갯수에 따라 type01 ~ tyupe03 까지 개발에서 넣어주세요 --> <h3>RS80 EVO</h3> <a href="/en/products/UltrasoundSystem/RS80%20EVO/General%20Imaging/benefit" class="prodcutName"> <span class="shortName">GI</span> <span class="longName">General Imaging</span> </a> </a> </div> </li> <!--v8--> <li class="item"> <dl> <dt><img src="/resources/_img/sub/product/sonosync_product_list_V8.jpg" alt="V8 ultrasound system"></dt><!--2023-12-20 SEO --> <dd>V8</dd> </dl> <div class="overlayer type01"> <!-- a 갯수에 따라 type01 ~ tyupe03 까지 개발에서 넣어주세요 --> <h3>V8</h3> <a href="/en/products/UltrasoundSystem/V8/General%20Imaging/benefit" class="prodcutName"> <span class="shortName">GI</span> <span class="longName">General Imaging</span> </a> </div> </li> <!--//v8--> <!--v7--> <li class="item"> <dl> <dt><img src="/resources/_img/sub/product/sonosync_product_list_V7.jpg" alt="V7 ultrasound machines"></dt><!--2023-12-20 SEO --> <dd>V7</dd> </dl> <div class="overlayer type01"> <!-- a 갯수에 따라 type01 ~ tyupe03 까지 개발에서 넣어주세요 --> <h3>V7</h3> <a href="/en/products/UltrasoundSystem/V7/General%20Imaging/benefit" class="prodcutName"> <span class="shortName">GI</span> <span class="longName">General Imaging</span> </a> </div> </li> <!--//v7--> </ul> </div> </div> </div> </div><!--//section_inner--> </section> <!--//section--> <section id="RelatedPapers" class="page-section page-block"> <div class="section_inner"> <h2 class="section_title">Related Papers</h2> <div class="row"> <div class="techLeaflet download_wrap"> <h3 class="title_area">Tech Leaflet</h3> <ul> <li> <a href="javascrtipt:" data-popup="techLeaflet" class="paper_download pop_open"> <img src="/resources/_img/sub/LiverSolution/RelatedPapers_techLeaflet.jpg" alt="Leaflet about fatty liver ultrasound"><!--2023-12-20 SEO --> <div class="hover_cont"> <span class="more"> Learn More </span> </div> </a> <div class="pop_wrap" id="techLeaflet" style="display:none;"> <div class="pop_container"> <div class="pop_header"> <div class="pop_title">Tech Leaflet</div> </div> <div class="pop_content"> <div class="popCont_heading">EzHRI™, TAI™ & TSI™</div> <div class="popCont_sentence"> Samsung provides measurement methods for the three properties presented in ultrasound signals (echogenicity, attenuation, and backscatter) that can be used to track the progress of fatty liver. These are significant improvements from conventional qualitative and inconvenient measurement methods, helping users diagnose fatty liver disease and measure fatty liver through a simpler quantified index. Samsung’s unparalleled non-invasive quantification tools are expected to help users provide their patients with more convenient and improved fatty liver diagnosis solutions. </div> <div class="popCont_btnWrap"> <a href="javascript:loginCheck('315');" class="btnS btn_download"><span class="ic_down"></span>DOWNLOAD</a> </div> </div> <button type="button" class="pop_close"><span class="hidden">Close</span></button> </div> </div><!--//pop_wrap--> </li> </ul> </div> <div class="whitePaper download_wrap"> <h3 class="title_area">White Paper</h3> <ul> <li> <a href="javascrtipt:" data-popup="RelatedPapers_CEUS" class="paper_download pop_open"> <img src="/resources/_img/sub/LiverSolution/RelatedPapers_CEUS.jpg" alt="CEUS+: contrast enhanced ultrasound white paper"><!--2023-12-20 SEO --> <div class="hover_cont"> <span class="more"> Learn More </span> </div> </a> <div class="pop_wrap" id="RelatedPapers_CEUS" style="display:none;"> <div class="pop_container"> <div class="pop_header"> <div class="pop_title">White Papar</div> </div> <div class="pop_content"> <div class="popCont_heading">ECR 2017 Speical Edition : CEUS as a problem solving tool in clinical practice</div> <div class="popCont_sentence">It would be beneficial to the patient, as well as logical, that if an abnormality is present on the initial sonographic examination, microbubble contrast is administered to obtain information that would negate the need for further, more expensive and potentially harmful imaging.</div> <div class="popCont_btnWrap"> <a href="javascript:loginCheck('92');" class="btnS btn_download"><span class="ic_down"></span>DOWNLOAD</a> </div> </div> <button type="button" class="pop_close"><span class="hidden">Close</span></button> </div> </div><!--//pop_wrap--> </li> <li> <a href="javascrtipt:" data-popup="RelatedPapers_whitePaper" class="paper_download pop_open"> <img src="/resources/_img/sub/LiverSolution/RelatedPapers_whitePaper.jpg" alt="S-Shearwave Imaging™ white paper"><!--2023-12-20 SEO --> <div class="hover_cont"> <span class="more"> Learn More </span> </div> </a> <div class="pop_wrap" id="RelatedPapers_whitePaper" style="display:none;"> <div class="pop_container"> <div class="pop_header"> <div class="pop_title">White Papar</div> </div> <div class="pop_content"> <div class="popCont_heading">Prospective evaluation of liver fibrosis using S-Shearwave Imaging™ </div> <div class="popCont_sentence"> Shear wave elastography(SWE) is the method currently satisfying these needs: non-invasive, easily accessible, cost effective, and safe. Generation of mechanical push and consecutive motion monitoring are all executed with ultrasound, without the need of an extra mechanical motor. These traits make SWE portable and feasible in various clinical environments. At the same time, SWE is required to produce reproducible estimations with low inter-and intra-operator variability with clinically significant cutoff values for fibrosis staging. </div> <div class="popCont_btnWrap"> <a href="javascript:loginCheck2('V8_S-Shearwave_Imaging_Liver_White_Paper.pdf', 'direct_PDF');" class="btnS btn_download"><span class="ic_down"></span>DOWNLOAD</a> </div> </div> <button type="button" class="pop_close"><span class="hidden">Close</span></button> </div> </div><!--//pop_wrap--> </li> </ul> </div> </div> </div><!--//section_inner--> </section> <!--//section--> <section id="disclaimer" class="disclaimerWrap"> <div class="section_inner"> <h2 class="section_title">References</h2> <div class=" disclaimer_type2"> <ul> <li>World Health Organization, 2022, Cancer, <a href="https://www.who.int/news-room/fact-sheets/detail/cancer" target="_blank">https://www.who.int/news-room/fact-sheets/detail/cancer </a> </li> <li>World Health Organization-The Global Cancer Observatory, 2020, Liver,<a href=" https://gco.iarc.fr/today/data/factsheets/cancers/11-Liver-fact-sheet.pdf" target="_blank"> https://gco.iarc.fr/today/data/factsheets/cancers/11-Liver-fact-sheet.pdf</a></li> <li>Naga Chalasani, et al., The Diagnosis and Management of Nonalcoholic Fatty Liver Disease: Practice Guidance From the American Association for the Study of Liver Diseases. Hepatology, 2018, 67.1, 328-357.</li> <li>Cha DI, Kang TW, Min JH, Joo I, Sinn DH, Ha SY, et al. Deep learning-based automated quantification of the hepatorenal index for evaluation of fatty liver by ultrasonography. Ultrasonography 2021 Feb 24 [Epub]. <a href="https://doi.org/10.14366/usg.20179" target="_blank">https://doi.org/10.14366/usg.20179</a></li> <li>JEON, SUN KYUNG, et al. “CLINICAL FEASIBILITY OF QUANTITATIVE ULTRASOUND IMAGING FOR SUSPECTED HEPATIC STEATOSIS: INTRA- AND INTER-EXAMINER RELIABILITY AND CORRELATION WITH CONTROLLED ATTENUATION PARAMETER.” Redirecting, 2021, <a href="https://www.sciencedirect.com/science/article/abs/pii/S0301562920305172" target="_blank">https://www.sciencedirect.com/science/article/abs/pii/S0301562920305172</a> </li> <li>Jeon SK, Joo I, Kim SY, Jang JK, Park J, Park HS, et al. Quantitative ultrasound radiofrequency data analysis for the assessment of hepatic steatosis using the controlled attenuation parameter as a reference standard. Ultrasonography 2020 May 9 [Epub]. <a href="https://doi.org/10.14366/usg.20042" target="_blank">https://doi.org/10.14366/usg.20042</a></li> <li>Jeon SK, Lee JM, Joo I, Park SJ. Quantitative Ultrasound Radiofrequency Data Analysis for the Assessment of Hepatic Steatosis in Nonalcoholic Fatty Liver Disease Using Magnetic Resonance Imaging Proton Density Fat Fraction as the Reference Standard. Korean J Radiol. 2021 Jul;22(7):1077-1086.<a href="https://doi.org/10.3348/kjr.2020.1262" target="_blank">https://doi.org/10.3348/kjr.2020.1262</a> </li> </ul> </div> <h2 class="section_title">Disclaimer</h2> <ul> <li>Some features listed on this webpage may be options that require purchase.</li> <li>The above is a description of liver analysis solution - related overall functions, and these functions may not be available in all products.</li> <li>This product, features, options, and transducers are not commercially available in all countries.</li> <li>Sales and Shipments are effective only after the approval by the regulatory affairs. </li> <li>Please contact your local sales representative for further details. </li> <li>This product is a medical device, please read the user manual carefully before use.</li> </ul> </div> </section> </div> <script src="/resources/_inc/js/jquery.touchFlow.js"></script> <script src="/resources/_inc/js/jquery.touchSlider.js"></script> <script src="/resources/_inc/js/LiverSolution.js"></script> <script type="text/javascript" src="/resources/_inc/js/slick.min.js"></script> <!-- // Liver Solution Content e --> <div class="main"> <div class="sitemapWrap clfix"> <div class="sitemapInner clfix"> <dl class="first_line"> <dt><a href="javascript:productAll();">Products</a></dt> <dd><a href="javascript:productLoadMore('uss');">Ultrasound System</a></dd> <dd><a href="javascript:productLoadMore('dxr');">Digital Radiography</a></dd> <dd><a href="javascript:productLoadMore('ivd');">In-vitro Diagnostics</a></dd> <dd><a href="javascript:productLoadMore('pct');">Portable CT</a></dd> </dl> <dl class="first_line"> <dt><a href="/en/knowledge_hub/clinical_library">Knowledge Hub</a></dt> <dd><a href="/en/knowledge_hub/clinical_library">Clinical Library</a></dd> <dd><a href="/en/knowledge_hub/videos">Videos</a></dd> <dd><a href="/en/knowledge_hub/insight">Insight</a></dd> </dl> <dl class="first_line"> <dt><a href="/en/event">Event</a></dt> <dd> <a href="/en/event">Event</a> </dd> </dl> <dl class="two_line"> <dt><a href="/en/service/service_offerings">Services</a></dt> <dd><a href="/en/service/service_offerings">Service Offerings</a></dd> <dd><a href="/en/service/service_RMS">RMS</a></dd> <dd><a href="/en/service/site_planning">Site Planning</a></dd> </dl> <dl> <dt><a href="/en/contact">Contact</a></dt> <dd><a href="/en/contact">Contact</a></dd> </dl> <dl> <dt><a href="/en/downloadcenter">Download</a></dt> <dd><a href="/en/downloadcenter">Download Center</a></dd> </dl> <dl> <dt><a href="/en/about_us/samsung_healthcare">About us</a></dt> <dd><a href="/en/about_us/samsung_healthcare">Samsung Healthcare</a></dd> <dd><a href="/en/contact/global_network">Global Network</a></dd> <!-- about-us 경로 오류 수정 contact로 수정 --> <dd><a href="/en/about_us/news_center">News Center</a></dd> </dl> <dl> <dt><a href="/en/about_us/notice">Notice</a></dt> <dd><a href="/en/about_us/notice">Notice</a></dd> </dl> </div> </div> </div> <!-- 2016-07-18 모달추가 --> <!-- Modal --> <div class="dimmed"></div> <div class="videoModal" id="videoModal"> <div class="modal-dialog modal-dialog-size"> <div class="modal-content wide-header"> <div class="modal-header"> <button type="button" class="close btn_videoClose" data-dismiss="modal" aria-label="Close"><span>×</span></button> <p class="modal-title"></p> </div> <div class="modal-body"> <div class="popInner"> <div class="videoFrame"> <iframe src="" frameborder="0"></iframe> </div> </div> </div> </div> </div> </div> <!-- //Modal --> <!-- 2018-07-09 모달추가 회원가입 기능 강화--> <!-- Modal --> <div class="modal fade" id="EmailModal" tabindex="-1" role="dialog"> <div class="modal-dialog modal-dialog-size" role="document"> <div class="modal-content wide-header bg_f6"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span>×</span></button> <p class="modal-title">Email Confirmation</p> </div> <div class="modal-body"> <div class="popInner"> <p class="text">You cannot log-in successfully since you didn’t complete your <i class="br-sm br-md br-lg"></i> registration via e-mail. Please check your email for a confirmation email and click the link in the email to complete the process!</p> <p class="text">If you haven’t received an email from us yet, please press the re-send button below.</p> <div class="btnWrap"> <button type="button" class="btnC btnEmail" onclick="resendConfirmationEmail();">RE-SEND CONFIRMATION EMAIL</button> </div> </div> </div> </div> </div> </div> <!-- //Modal --> <div class="modal fade" id="loginModal" tabindex="-1" role="dialog"> <div class="modal-dialog modal-dialog-size" role="document"> <div class="modal-content wide-header bg_f6"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span>×</span></button> <p class="modal-title">Login</p> </div> <div class="modal-body"> <div class="popInner"> <form id="loginForm" > <dl class="clfix"> <dt>ID</dt> <dd> <input type="text" class="inText" name="id" id="header_id" maxlength="25"> <p class="dd_txt"><input type="checkbox" class="check" id="remember" name="remember"/><label for="remember" class="check">Remember my ID</label></p> </dd> </dl> <dl class="clfix"> <dt>Password</dt> <dd> <input type="password" class="inText" name="pw" id="header_pw" maxlength="15"> <!-- <p class="dd_txt" onclick="userSearch();">Forget your password or ID?</p> --> <a class="dd_txt" href="javascript:userSearch();">Forget your password or ID?</a> </dd> </dl> <div class="btnWrap btnleng_02"> <button type="button" class="btnC btnSubmit" onclick="login();">Log In</button> <button type="button" class="btnC btnCancle" onclick="openSignUp();">Registration</button> </div> </form> </div> </div> </div> </div> </div> <script type="text/javascript"> $("#loginForm").bind("keydown", function(e){ if (e.keyCode == 13) { login(); } }); $(".floating_banner").find("#btnClose").click(function(){ CookieManager.setCookie('functionality', 'samsung', 'showCookiesEn', 'N', 1); //1일동안 유지되는 쿠키 생성 $(".floating_banner").hide(); }); function numberKeyPress(event) { event = event || window.event; var keyID = (event.which) ? event.which : event.keyCode; if ((keyID < 48) || (keyID > 57)) { event.preventDefault ? event.preventDefault() : event.returnValue = false; }//end if } function numberKeyPressNew(event) { e = window.event; if ( ( e.keyCode >= 48 && e.keyCode <= 57) || ( e.keyCode >= 96 && e.keyCode <= 105) || e.keyCode == 45 || e.keyCode == 8 || e.keyCode ==46 || e.keyCode == 37 || e.keyCode == 39 || e.keyCode == 189 || e.keyCode == 109) { }else{ event.preventDefault ? event.preventDefault() : event.returnValue = false; event.target.value = event.target.value.replace(/[^0-9:\-]/g, ""); } } var counter = setInterval(timer, 1000); var count = 130; if (isNaN(getCookie("countCookieEn")) || getCookie("countCookieEn") == null || getCookie("countCookieEn") == "") { /*console.log("쿠키값없으면");*/ } else { /*console.log("쿠키값있으면");*/ count = getCookie("countCookieEn"); } function timer(){ count--; if (count <= 0) { clearInterval(counter); if (getCookie("showCookiesEn") != "N") { $(".floating_banner").addClass("on"); // showCookiesEn 라는 이름의 쿠키 값이 "N" 이 아니면 레이어 보여줌 } else { $(".floating_banner").hide(); } } else { CookieManager.setCookie('targeting', 'samsung', 'countCookieEn', count, 1); } } </script> <link rel="stylesheet" href="/resources/cms/css/layouts/footer.css" type="text/css"/> <footer> <div class="footer"> <div class="inner__footer"> <div class="layout__link"> <div class="group__link" id="products"> <div class="title__link" onclick="openMenu(this)"><p>Products</p><div class="icon"><img src="/resources/cms/icon/ico_dropdown.png"></div></div> <div class="accordion"> <ul class="list__link"> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/products/UltrasoundSystem"><p>Ultrasound System</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/products/DigitalRadiography"><p>Digital Radiography</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/products/ComputedTomography"><p>Computed Tomography</p></a></li> </ul> </div> </div> <div class="group__link" id="solutions"> <div class="title__link" onclick="openMenu(this)"><p>Solutions</p><div class="icon"><img src="/resources/cms/icon/ico_dropdown.png"></div></div> <div class="accordion"> <ul class="list__link"> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/S_Hub"><p>S-Hub</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/smartcenter"><p>Smart Center</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/knowledge_hub/insight/61"><p>Cyber Security</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/LiverAnalysisSolution"><p>Liver Analysis Solutions</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/knowledge_hub/insight/54"><p>Value-up Package</p></a></li> <!-- <li><a class="item__link" href="#"><p>CXR Assist</p></a></li> --> <!-- <li><a class="item__link" href="#"><p>Mobile Stroke Unit</p></a></li> --> </ul> </div> </div> <div class="group__link"> <div class="title__link" onclick="openMenu(this)"><p>Resources</p><div class="icon"><img src="/resources/cms/icon/ico_dropdown.png"></div></div> <div class="accordion"> <ul class="list__link"> <li><a class="item__link out__link" href="https://global.samsungsuite.com/"><p>theSUITE</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/knowledge_hub/videos"><p>Video</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/knowledge_hub/insight"><p>Insight</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/disinfection/view"><p>Cleaning Guidelines</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/downloadcenter/download"><p>Catalogue & Software</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/downloadcenter/usermanual/sncheck"><p>Manual</p></a></li> </ul> </div> </div> <div class="group__link"> <div class="title__link" onclick="openMenu(this)"><p>About Us</p><div class="icon"><img src="/resources/cms/icon/ico_dropdown.png"></div></div> <div class="accordion"> <ul class="list__link"> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/about_us/samsung_healthcare"><p>Samsung Healthcare</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/about_us/news_center"><p>News Center</p></a></li> <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/event"><p>Events</p></a></li> <li><a class="item__link out__link" target="_blank" href="https://previous.samsunghealthcare.com/en/sustainability"><p>Sustainability</p></a></li> <!-- <li><a class="item__link" href="https://previous.samsunghealthcare.com/en/about_us/notice"><p>Notice</p></a></li> --> </ul> </div> </div> </div> <div class="layout__copyright"> <div class="text__copyright pc_only tab_only"><p>Copyright©2016-2024 SamsungHealthcare.com All rights reserved.</p></div> <div class="text__copyright m_only"><p>Copyright©SamsungHealthcare.com All rights reserved.</p></div> </div> <div class="layout__bottom"> <div class="group__global"> <div class="wrapper__dropdown_mini"> <div class="dropdown_mini select-lang" onclick="openDropdownMini(this)"> <div class="selected__dropdown"> <p>Global</p> <div class="icon"><img src="/resources/cms/icon/ico_dropdown.png"></div> </div> <div class="list__option"> <a href="#" class="item__option" onclick="selectOptionMini(this)"><p>Global</p></a> <a href="#" class="item__option" onclick="selectOptionMini(this)"><p>Deutschland</p></a> <a href="#" class="item__option" onclick="selectOptionMini(this)"><p>France</p></a> <a href="#" class="item__option" onclick="selectOptionMini(this)"><p>Italia</p></a> <a href="#" class="item__option" onclick="selectOptionMini(this)"><p>Korea</p></a> <a href="#" class="item__option" onclick="selectOptionMini(this)"><p>Spain</p></a> </div> </div> </div> <div class="line"></div> <div class="wrapper__dropdown_mini"> <div class="dropdown_mini" onclick="openDropdownMini(this)"> <div class="selected__dropdown"> <p>Family Site</p> <div class="icon"><img src="/resources/cms/icon/ico_dropdown.png"></div> </div> <div class="list__option"> <a class="item__option" href="https://samsung.com/us/" onclick="selectOptionMini(this)"><p>Samsung Electronics</p></a> <a class="item__option" href="https://samsungmedison.com/" onclick="selectOptionMini(this)"><p>Samsung Medison</p></a> <a class="item__option" href="https://vet1.samsunghealthcare.com/jsp/main.jsp" onclick="selectOptionMini(this)"><p>Samsung Healthcare VET</p></a> <a class="item__option" href="https://neurologica.com/" onclick="selectOptionMini(this)"><p>Neurologica</p></a> <a class="item__option" href="https://bostonimaging.com/government" onclick="selectOptionMini(this)"><p>Boston Imaging</p></a> </div> </div> </div> </div> <div class="group__button__text"> <a href="https://previous.samsunghealthcare.com/en/site_map" class="button__text pc_only"><p>Sitemap</p></a> <a href="https://previous.samsunghealthcare.com/en/privacy" class="button__text pc_only"><p>Privacy policy</p></a> <a href="https://previous.samsunghealthcare.com/en/terms" class="button__text pc_only"><p>Terms of use</p></a> <a href="https://previous.samsunghealthcare.com/en/business_ethics" class="button__text pc_only"><p>Business ethics</p></a> <a href="https://previous.samsunghealthcare.com/en/business_guideline" class="button__text pc_only"><p>Business guideline</p></a> <a href="https://previous.samsunghealthcare.com/en/cookiepolicy" class="button__text pc_only"><p>Cookie policy</p></a> <!-- <a href="#" class="button__text pc_only"><p>Cookie management</p></a> --> <a href="https://previous.samsunghealthcare.com/en/terms" class="button__text m_only"><p>Terms and Conditions</p></a> <a href="https://previous.samsunghealthcare.com/en/privacy" class="button__text m_only"><p>Privacy</p></a> <a href="https://previous.samsunghealthcare.com/en/cookiepolicy" class="button__text m_only"><p>Cookies</p></a> <!-- <a href="#" class="button__text m_only"><p>Legal</p></a> --> <a href="https://previous.samsunghealthcare.com/en/site_map" class="button__text m_only"><p>Sitemap</p></a> </div> <div class="text__stay_in_the_loop"><p>STAY IN THE LOOP?</p></div> <div class="group__button__icon"> <a href="https://x.com/Samsung_HC" class="button__icon"><img src="/resources/cms/icon/ico_tweeter.png"></a> <a href="https://linkedin.com/showcase/samsung-healthcare" class="button__icon"><img src="/resources/cms/icon/ico_linkin.png"></a> <a href="https://pf.kakao.com/_DxdJlb" class="button__icon"><img src="/resources/cms/icon/ico_ch.png"></a> </div> </div> </div> </div> </footer> <script src="/resources/cms/js/pages/footer.js"></script> <script type="text/javascript"> </script> </body> </html>