﻿function SetMenuPage(index) {
    var editorWebpage = document.getElementById('editorWebpage');
    var editorSEO = document.getElementById('editorSEO');
    var editorStats = document.getElementById('editorStats');
    var tabWebpage = document.getElementById('tabWebpage');
    var tabSEO = document.getElementById('tabSEO');
    var tabStats = document.getElementById('tabStats');
    if (index == 0) {
        editorWebpage.style.display = 'block';
        editorSEO.style.display = 'none';
        editorStats.style.display = 'none';
        tabWebpage.style.borderBottomColor = '#d3e5f8';
        tabSEO.style.borderBottomColor = '#1f1f98';
        tabStats.style.borderBottomColor = '#1f1f98';
    }
    else if(index == 1) {
        editorWebpage.style.display = 'none';
        editorSEO.style.display = 'block';
        editorStats.style.display = 'none';
        tabWebpage.style.borderBottomColor = '#1f1f98';
        tabSEO.style.borderBottomColor = '#d3e5f8';
        tabStats.style.borderBottomColor = '#1f1f98';
        }
    else {
        editorWebpage.style.display = 'none';
        editorSEO.style.display = 'none';
        editorStats.style.display = 'block';
        tabWebpage.style.borderBottomColor = '#1f1f98';
        tabSEO.style.borderBottomColor = '#1f1f98';
        tabStats.style.borderBottomColor = '#d3e5f8';
        }
}

