Center Pop-up





9
Date Submitted Tue. Oct. 18th, 2005 11:12 AM
Revision 1 of 1
Beginner zero
Tags "Pop Up" | Center | JavaScript | Screen
Comments 0 comments
Center Pop-up
<head>
<script language="JavaScript">
<!--
function Center(url){
   var w = 250; // set the width of pop-up
   var h = 250; // set the height of pop-up
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
   window.open(url,"pop","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
 }
-->
</script>
</head>
 

Dvd Zero

Comments

There are currently no comments for this snippet.

Voting