Hey dav1d,
I guess you can use GPT for such task:
<script>
function openPopup() {
// Specify the URL you want to open in the popup
var url = 'URL"';
// Specify the window features (optional)
var features = 'width=600,height=400,resizable=yes,scrollbars=yes';
// Open the popup window
window.open(url, 'PopupWindow', features);
}
</script>