if (window.location.search.indexOf("cmspagemode=edit") > 0) {
    addEditModeCss();
}

function addEditModeCss() {
    var head = document.getElementsByTagName("head")[0];
    if (!head)
        return;
    var cssNode = document.createElement('link');
    cssNode.type = 'text/css';
    cssNode.rel = 'stylesheet';
    cssNode.href = '/app_themes/microbus/Css/editMode.css';
    cssNode.media = 'screen';
    head.appendChild(cssNode);
} 