// // BB-Code anzeigen // function bbcode_showSimple(sid) { var nWidth = 600; var nHeight = 500; var nLeft = (screen.width) ? (screen.width-nWidth)/2 : 100; var nTop = (screen.height) ? (screen.height-nHeight)/3 : 100; var wndPopup = window.open("/admin/pages/bbcode/?type=simple&sid="+sid, "bbcode", "left="+ nLeft +",top="+ nTop +",width="+ nWidth +", height="+ nHeight +".resizable=yes,status=yes,toolbar=no,menubar=yes,location=no,scrollbars=yes"); wndPopup.focus(); } function bbcode_showExt(sid) { var nWidth = 600; var nHeight = 500; var nLeft = (screen.width) ? (screen.width-nWidth)/2 : 100; var nTop = (screen.height) ? (screen.height-nHeight)/3 : 100; var wndPopup = window.open("/admin/pages/bbcode/?type=ext&sid="+sid, "bbcode", "left="+ nLeft +",top="+ nTop +",width="+ nWidth +", height="+ nHeight +".resizable=yes,status=yes,toolbar=no,menubar=yes,location=no,scrollbars=yes"); wndPopup.focus(); }