function printPage()
{
    window.print();
}

function changeCss() {

    for(i=0;i<document.styleSheets.length;i++) {
        if (document.styleSheets.item(i).disabled == true) {
            document.styleSheets.item(i).disabled = false;
            document.getElementById("p7WebVersion").innerHTML = "Textová verze";
        } else {
            document.styleSheets.item(i).disabled = true;
            document.getElementById("p7WebVersion").innerHTML = "Grafická verze";
        }
    }

}

/**
 * Transports content back to TinyMCE editor
 * Requires: Loaded tinymce_popup script!
 * @param html
 * @return
 */
function assetInsertContentToTinymce(html) {
        var inst  = tinyMCEPopup.editor;
        var elm = inst.selection.getNode();
        i = inst.selection.getBookmark();
        inst.selection.moveToBookmark(i);
        tinyMCEPopup.execCommand('mceInsertContent',false, html);
        tinyMCEPopup.close();
}
