Advertisement
Guest User

Kontakt

a guest
Aug 4th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. <script type="text/javascript">
  3.     function PopupCenter(pageURL, title, w, h) {
  4.         var left = (screen.width / 2) - (w / 2);
  5.         var top = (screen.height / 2) - (h / 2);
  6.         var targetWin = window.open("contactus.aspx", "Kontakt Os", 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
  7.     }
  8. </script>
  9.  
  10.  
  11.  
  12. <a href="javascript:void(0);" onclick="PopupCenter('#', 'myPop1',400,400);">Kontakt Os</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement