//Javascript functions for ESM 
 
//function to open the publish Calendar tools in a new window. 
function fnShowPubCal(ctiGuid) 
{ 
    window.open('AdminControls/FuturePublishCalendar.aspx?ctiGuid=' + ctiGuid, 'publishing', 'height=300,width=650, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, directories=no, status=no'); 
} 

// For showing / hiding HTML elements by id
function fnShowHide(strId)
{
    var strStatus = document.getElementById(strId).style.display;
    
    if(strStatus == 'none')
    {
        document.getElementById(strId).style.display = 'block';
    }
    else
    {
        document.getElementById(strId).style.display = 'none';
    }
}


