//iLime Documentation Show Selected Layer
function displayHelpSection(Layer) {
    hideLayer('gettingStarted');
    hideLayer('helpAndSupport');
    hideLayer('iLimeDemoApp');
    hideLayer('errorCodes');
    hideLayer('accountRetrieveSingle');
    hideLayer('accountUpdate');
    hideLayer('userRetrieve');
    hideLayer('retrieveSingle');
    hideLayer('userCreate');
    hideLayer('userUpdate');
    hideLayer('userDelete');
    hideLayer('applicationRetrieve');
    hideLayer('applicationRetrieveSingle');
    hideLayer('applicationCreate');
    hideLayer('applicationUpdate');
    hideLayer('applicationDelete');
    hideLayer('deviceRetrieve');
    hideLayer('deviceRetrieveSingle');
    hideLayer('deviceCreate');
    hideLayer('deviceUpdate');
    hideLayer('deviceDelete');
    hideLayer('notificationRetrieve');
    hideLayer('notificationRetrieveSingle');
//    hideLayer('notificationUpdate');
    hideLayer('notificationDelete');
    hideLayer('notificationCreate');
    hideLayer('configuringPushSSL');
    hideLayer('sampleJava');
    hideLayer('sampleC#');

    showLayer(Layer);
}
//Simple Show Layer Function
function showLayer(Layer) {
    document.getElementById(Layer).style.display = "block";
}
//Simple Hide Layer Function
function hideLayer(Layer) {
    document.getElementById(Layer).style.display = "none"
}

