﻿function ToggleCalendar(Status)
{
    document.getElementById("ctl00_ContentPlaceHolder_Main_ASPxDateEdit2_I").readonly = !Status;
}

function ToggleAdvancedSearch(id, imgId)
{
    
    var oToggle = document.getElementById(id);
    var oToggleImg = document.getElementById(imgId);
    
     
    if (!oToggle.style.display)
    {
        
       
        oToggle.style.display = 'none';
        
        if (imgId)
        oToggleImg.src = '../images/icons/right_arrow.png';
    }   
    else 
    {
   
        oToggle.style.display = '';
        
        if (imgId)
        oToggleImg.src = '../images/icons/down_arrow.png';
    }
}

//function is called on changing country
function OnCountryChanged(cmbCountry) {
    ASPxGridView1.GetEditor("ApplicationStatus").PerformCallback(cmbCountry.GetValue().toString());
}

function ShowWindow() {
    calculatorWindow.Show();
}

    
