Group: User Level:
Posts: 77 Joined: 6/3/2023 IP-Address: saved
|
<html> <a href="javascript:offerGo('https://forum.koswog.com/')">Click me</a> <script> var win_width = 1021; // window width in pixels var win_height = 544; // window height in pixels var win_resize = 0; // allow popup window to be resizes, to disallow change to 0 var win_scroll = 0; // show scroll bars on new window, to disallow change to 0 var win_status = 0; // show status bar on new window, to disallow change to 0 var win_location = 0; // show the URL location bar, to disallow change to 0 var win_toolbar = 0; // show browser toolbar, to disallow change to 0
wLeft = window.screenLeft ? window.screenLeft : window.screenX; wTop = window.screenTop ? window.screenTop : window.screenY; var left = wLeft + (window.innerWidth / 2) - (win_width / 2); var top = wTop + (window.innerHeight / 2) - (win_height / 2);
function offerGo(offerurl){ //popup_Set_Cookie(cookie_name,"1",hours,"/","",""); pop_window = window.open(offerurl,'offer_window','location='+ win_location +',left='+ left +',top='+ top +',status='+ win_status +',scrollbars='+ win_scroll +',resizable='+ win_resize +',toolbar='+ win_toolbar +',width='+ win_width +',height='+win_height); } </script> </body> </html>
|