// JavaScript Document
<!-- 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 -->
<!-- Begin
function popUp(URL, s_width, s_height, scroll_vis) {
	if(!s_width) {
		s_width = 400;
	}
	if(!s_height) {
		s_height = 400;
	}
	if(!scroll_vis) {
		scroll_vis = 0;
	}

	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars="+scroll_vis+",location=0,statusbar=0,menubar=0,resizable=0,width="+s_width+",height="+s_height+",left = 200,top = 112');");

}
// End -->