﻿/**********************************************************/
// CALLBACK MESSAGE
/**********************************************************/

    // function activated by callbackresults
    function showCreateNotificationError(innerhtml) {    
        hideLayer("BusyIndicator")    
        document.getElementById("errorlabel").innerHTML = innerhtml;
        //
    }
    
    // function activated by callbackresults
    function showNotificationMessage(innerhtml) {        
        hideLayer("BusyIndicator")  
        document.getElementById("errorlabel").innerHTML = "<font color='green'>" + innerhtml + "</font>";
        //
    }    

    // function activated by callbackresults  
    function hideCreateNotificationError() {
        document.getElementById( "errorlabel" ).innerHTML = "";       
    }
    
    // function activated by callbackresults  
    function setScaleValues(scalevalue) {
        document.getElementById( "scalelabel" ).innerHTML = "<font style='font-weight:bold'>" + scalevalue + "</font>";       
    }   
    
     


