/* popup_window.js
 * Dave Kreut
 * November 15, 2000
 *
 * Creates a centered popup window by using parameters passed to the function.
 */


function popup_window(url, xsize, ysize) {
	var x = (screen.width - xsize) / 2;
	var y = (screen.height - ysize) / 2;

	var popup_window = window.open(url,'eds_popup_window','left='+x+',top='+y+',width='+xsize+',height='+ysize+'');
	popup_window.focus();
}

