//###########################################################################
//# js.window.js
//###########################################################################
//# Window Processing
//###########################################################################
function window_open(url, name, width, height, scroll, resize)
{
	var features = "width=" + width + ",height=" + height;
	if (scroll) features += ",scrollbars=yes";
	if (resize) features += ",resizable=yes";
	
	var wnd = window.open(url, name, features);
	return wnd;
}
