function utf8_to_b64( str ) { return window.btoa(unescape(encodeURIComponent( str ))); } function b64_to_utf8( str ) { return decodeURIComponent(escape(window.atob( str ))); } function htmlbox(color,html) { var html2 = b64_to_utf8(html); $.confirm({ title: 'Info Box', closeIcon: true, escapeKey: 'OK', content: html2, draggable: false, useBootstrap: false, type: color, typeAnimated: true, buttons: { OK: { keys: ['enter'], text: 'OK', btnClass: 'btn-blue', action: function(){ } }, } }); } function close_sidebar() { $('.side-bar').hide('slow'); $(".menu-btn").show('slow'); $(".ausblenden").show('slow'); } function open_window(nn) { close_sidebar(); window.top.location.href = nn; } function open_new_window(nn) { close_sidebar(); window.open(nn); } function open_fancy(url) { close_sidebar(); var width = "100%"; var height = "100%"; $.fancybox.open({ 'src' : url, 'type' : 'iframe', opts : { scrolling: 'no', keyboard: true, clickSlide: "", clickOutside: "", touch: { vertical: false, momentum: false},iframe : {css : {'width' : width,'height': height}}} }); } function printIt(printThis) { var printThis2 = b64_to_utf8(printThis); win = window.open(); self.focus(); win.document.open(); // win.document.write('<'+'html'+'><'+'head'+'><'+'style'+'>'); // win.document.write(''); // win.document.write('body, td { font-family: Verdana; font-size: 10pt;}'); // win.document.write('<'+'/'+'style'+'><'+'/'+'head'+'><'+'body'+'>'); // win.document.write('Drucken - '); // win.document.write('Schließen