<!DOCTYPE html>
<html lang="en">
<head>

<title>Interpretation of Results in MAGMASOFT® [Detail]</title>

<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="7 days">

<link rel="apple-touch-icon" href="/export/system/modules/org.opencms.apollo.template.basics/resources/img/favicon_120.png" />
<link rel="icon" href="/export/system/modules/org.opencms.apollo.template.basics/resources/img/favicon_120.png" type="image/png" />

<link rel="stylesheet" href="/export/system/modules/com.magmasoft.apollo.extensions/resources/css/style-magma.min.css" />




<link rel="stylesheet" href="/export/system/modules/com.magmasoft.apollo.extensions/resources/css/flags.css">
</head>
<body>
<div id="mercury-page" class="wrapper">

<div  id="page-complete" ></div></div><!--/wrapper-->


<script type="text/javascript" src="/export/system/modules/org.opencms.apollo.template.basics/resources/js/scripts-all.min.js"></script><script type="text/javascript">
  jQuery(document).ready(function() {
    ApolloHandlers.init();
    try {
      createBanner();
    } catch (e) {}
    try {
      $("#list_pagination").bootstrapPaginator(options);
    } catch (e) {}
  });
</script>

<!--[if lt IE 9]>
  <script src="/export/system/modules/org.opencms.apollo.template.basics/resources/compatibility/respond.js"></script>
  <script src="/export/system/modules/org.opencms.apollo.template.basics/resources/compatibility/html5shiv.js"></script>
  <script src="/export/system/modules/org.opencms.apollo.template.basics/resources/compatibility/placeholder-IE-fixes.js"></script>
<![endif]-->







<noscript><style>html.noscript .hide-noscript { display: none !important; }</style></noscript>

<div id="template-info" data-info='{"editMode":"false","project":"online","locale":"en"}'>
<div id="template-grid-info"></div></div>


    
    
        
    















    
    
    
    
    

    <div id="privacy-policy-banner" class="pp-banner" data-banner='{"root":"L3NpdGVzL01BR01BX0V1cm9wZQ==","page":"Ly5jb250ZW50L2Jsb2dlbnRyaWVzLy5kZXRhaWxDb250YWluZXJzL2VuL2JlXzAwMDIwLnhtbA==","policy":"L3NoYXJlZC8uY29udGVudC9wcml2YWN5LXBvbGljeS54bWw="}'></div>

    <noscript>
        <div id="privacy-policy-banner-noscript" class="pp-banner">
            <div class=banner>
                <div class="container">
                    <div class="message">JavaSript is disabled!</div>
                </div>
            </div>
        </div>
    </noscript>







<script>mercury=function(){var n=function(){var n=[];return{ready:function(t){n.push(t)},load:function(t){n.push(t)},getInitFunctions:function(){return n}}}(),t=function(t){if("function"!=typeof t)return n;n.ready(t)};return t.getInitFunctions=function(){return n.getInitFunctions()},t.load=function(n){this(n)},t.ready=function(n){this(n)},t}();var __isOnline=true,__scriptPath="/export/system/modules/com.magmasoft.apollo.extensions/resources/js/mercury.js"</script>

<script async src="/export/system/modules/com.magmasoft.apollo.extensions/resources/js/mercury.js"></script>

<script src="/export/system/modules/com.magmasoft.apollo.extensions/resources/js/jquery/jquery.ui.widget.js"></script>
<script src="/export/system/modules/com.magmasoft.apollo.extensions/resources/js/jquery/jquery.iframe-transport.js"></script>
<script src="/export/system/modules/com.magmasoft.apollo.extensions/resources/js/jquery/jquery.fileupload.js"></script>

<script type="text/javascript">


/*
 * jQuery replaceText - v1.1 - 11/21/2009
 * http://benalman.com/projects/jquery-replacetext-plugin/
 * 
 * Copyright (c) 2009 "Cowboy" Ben Alman
 * Dual licensed under the MIT and GPL licenses.
 * http://benalman.com/about/license/
 */
(function($){$.fn.replaceText=function(b,a,c){return this.each(function(){var f=this.firstChild,g,e,d=[];if(f){do{if(f.nodeType===3){g=f.nodeValue;e=g.replace(b,a);if(e!==g){if(!c&&/</.test(e)){$(f).before(e);d.push(f)}else{f.nodeValue=e}}}}while(f=f.nextSibling)}d.length&&$(d).remove()})}})(jQuery);

$(document).ready(function(){
    $("body *").replaceText( /MAGMA5/g, "MAGMA&nbsp;&nbsp;<span class='Super' style='text-align:left'>5</span>");

    $("span,a,b,h1,h2,h3,h4,p,li[id!='searchButtonHeader'],.page_content_right_head,.academystep").each(function(){
        $(this).html($(this).html().replace(/<sup>®<\/sup>/g,"®"));
        $(this).html($(this).html().replace(/®/g,"&nbsp;&nbsp;<span class='Super SuperR' style='text-align:left'>®</span>"));
    });
	
	$("label").each(function(){
        $(this).html($(this).html().replace(/Binary\ \(/g,"PDF ("));
        $(this).html($(this).html().replace(/Binärdatei\ \(/g,"PDF ("));
    });
	
	$(".showWhenReady").removeClass("hide_it");

})
</script>






<script type="text/javascript">
$(document).ready(function(){

})
</script>




<script type="text/javascript">

<!-- Build lang-selection out of prototype -->

function buildLangSelection(){
	var prototype = $(".lang-select-prototype");
	if(prototype.length > 0){
		$(".header.topheader-magma + .header").append(prototype.find(".navbar-collapse").addClass("langbar-active"));
		var langbar = $(".langbar-active");
		langbar.attr("style", "position: absolute !important; visibility: hidden !important; display: block !important");
		var height = langbar.height();
		langbar.attr("style", "height: 0 !important");
		langbar.data("height", height + "px");
		
		$(".langbutton").click(function(){
			if($(this).data("open") === "true"){
				hideLangSelection();
			}
			else {
				showLangSelection();
			}
		});

		$(".navbar-toggle").click(function(){
			if($(".navbar-responsive-collapse.in").length == 0){
				hideLangSelection();
			}
		});
	}
}

function showLangSelection(){
	var height = $(".langbar-active").data("height");
	$(".langbar-active").attr("style", "height: " + height + " !important");
	$(".langbutton").data("open", "true");
	if($(".navbar-responsive-collapse.in").length > 0){
		$(".navbar-toggle").trigger("click");
	}
}

function hideLangSelection(){
	$(".langbar-active").attr("style", "height: 0 !important");
	$(".langbutton").data("open", "false");
}

function keepAlive() {
    $.ajax({
        type: "GET",
        url: "/shared/keepalive.html",
        async: true,
        cache: false
    });
}

$( document ).ready(function(){

    const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone;
    document.cookie = "timezone=" + timezone + "; path=/";

    setInterval(keepAlive, 600000);

	<!-- icon-button resizing (set height = width when resized) -->
	
	if($(".magmateaser.icon").length > 0){
		$(".magmateaser.icon .overflow-hidden").height($(".magmateaser.icon > .thumbnail-kenburn").eq(0).width());
		$(".magmateaser.icon .caption a").outerWidth($(".magmateaser.icon").width());
		$(window).resize(function(){
			$(".magmateaser.icon .overflow-hidden").height($(".magmateaser.icon > .thumbnail-kenburn").eq(0).width());
			$(".magmateaser.icon .caption a").outerWidth($(".magmateaser.icon").width());
		});
	}
	
	buildLangSelection();
	
	$(window).resize(function(){
		var langbar = $(".langbar-active");
		console.log("resized: " + langbar.data("resized"));
		if(langbar.data("resized") != "true" && window.innerWidth < 992 && langbar.data("height") != langbar.height()){
			langbar.data("resized", "true");
			langbar.attr("style", "position: absolute !important; visibility: hidden !important; display: block !important");
			var height = langbar.height();
			langbar.attr("style", "height: 0 !important");
			langbar.data("height", height + "px");
		}
	});
		
});
</script>

<!-- Custom slider navigation for smartphone -->

<script type="text/javascript">
	function getSliderId(){
		var banner = $(".fullwidthbanner");
		if(banner.length > 0){
			return banner.attr("id");
		}
		return ("none");
	}

	function sliderNext(){
		var id = getSliderId();
		if(id != "none"){
			$('#' + id).revnext();
		}
	}

	function sliderPrev(){
		var id = getSliderId();
		if(id != "none"){
			$('#' + id).revprev();
		}
	}
	
	function showCaption(index){
		$(".slider-text-xs .captions .caption.show").removeClass("show");
		$(".slider-text-xs .captions .caption").eq(index).addClass("show");
	}
	
	function updateBullets(index){
		$(".slider-nav-xs .bullets .bullet").removeClass("selected");
		$(".slider-nav-xs .bullets .bullet").eq(index).addClass("selected");
	}
</script></body>
</html>
