Das sind Dinge, die man selbst basteln muss, für Anfänger: https://wiki.selfhtml.org/wiki/JavaScript
Beispiel Popup 800x600 Pixel, ist ungetestet:
Code: Alles auswählen
<script>
function OpenPopup(){
var nocache = new Date().getTime() / 1000;
window.open("https://newsletter-software-php-script.superwebmailer.de/help/de/" + "?nocache=" + nocache, "SuperWebMailerHelpWnd","width=800,height=480,scrollbars=yes,status=no,toolbar=yes,resizable=yes,location=no,modal=no");
}
</script>
<a href="javascript:OpenPopup()">Öffne mich</a>