
<!-- Idea by:  Nic Wolfe (Nic@TimelapseProductions.com) -->
<!-- Web URL:  http://fineline.xs.mw -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->


function popUp(mypage, myname, w, h, scroller) {
var winl = parseInt((screen.availWidth - w) / 2);
var wint = parseInt((screen.availHeight - h) / 2);
var winprops = "height="+h+",width="+w+",top="+wint+",left="+winl+",scrollbars="+scroller+",resizable,location=0,status=1,menubar=1";
var win = window.open(mypage, myname, winprops);
}



