Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <script type="text/javascript">
  2. <!--
  3. function popup(url)
  4. {
  5. var width = 300;
  6. var height = 200;
  7. var left = (screen.width - width)/2;
  8. var top = (screen.height - height)/2;
  9. var params = 'width='+width+', height='+height;
  10. params += ', top='+top+', left='+left;
  11. params += ', directories=no';
  12. params += ', location=no';
  13. params += ', menubar=no';
  14. params += ', resizable=no';
  15. params += ', scrollbars=no';
  16. params += ', status=no';
  17. params += ', toolbar=no';
  18. newwin=window.open(url,'windowname5', params);
  19. if (window.focus) {newwin.focus()}
  20. return false;
  21. }
  22. // -->
  23. </script>
  24.  
  25. <a href="javascript: void(0)"
  26. onclick="popup('popup.html')">Centered popup window</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement