// Copyright © 2004 gh, LLC.

function popupWindow(URL) {
	var newwindow = window.open(URL, "Boo", "channelmode=no, directories=no, fullscreen=no, location=no, menubar=no, resizable=yes, scrollbars=yes, status=yes, titlebar=yes, toolbar=no");
	
	var newHeight	= Math.round(Number(window.innerHeight)*0.9);
	var newWidth	= Math.round(Number(window.innerWidth)*0.9);
	
	newwindow.outerHeight		= newHeight;
	newwindow.outerWidth		= newWidth;

	if (window.focus) {
		newwindow.focus();
	}
}