function mflipag() {
    var d = document.getElementById('AllMonitorGraph').style.display;
    if (d == "none") {
        mshowag();
    } else {
        mhideag();
    }
}

function mshowag() {
    document.getElementById('AllMonitorGraph').style.display = "block";
    document.getElementById('AllMonitorFlipper').innerHTML = "HIDE   Externals HYIP-Monitors statistic";
}

function mhideag() {
    document.getElementById('AllMonitorGraph').style.display = "none";
    document.getElementById('AllMonitorFlipper').innerHTML = "Click here to see  Externals HYIP-Monitors   statistic  ";
};