/*-- GERAL FUNCTIONS --------------------------------------------*/
/*-- GERAL FUNCTIONS --------------------------------------------*/
/*-- GERAL FUNCTIONS --------------------------------------------*/

function openDialog(divID, dialogWidth, dialogHeight) {

    if(dialogHeight == null) { 
    
        $(divID).dialog({
            autoOpen: true,
            modal: true,
            width: dialogWidth,
            resizable: false 
        });
        
    } else {
    
        $(divID).dialog({
            autoOpen: true,
            modal: true,
            width: dialogWidth,
            height: dialogHeight,
            resizable: false 
        });
        
    }
    
}

// Hide a div element
function HideTools(d) {
    
    if(d.length < 1) { return; }
    document.getElementById(d).style.display = "none";
    
}

// Show a div element
function ShowTools(d) {
    
    if(d.length < 1) { return; }
    document.getElementById(d).style.display = "block";
    
}          
  
