// General Admin Function
//
//	Create a Pop Up Window
function create_window(url, width, height) {
	//
	//	if the window is already open, resize it to the new dimensions
	//
	if (window.popup_window && !window.popup_window.closed) {
		window.popup_window.resizeTo (width, height);
	}
	//
	//	Set window properties
	//
	var window_specs = "location=no, scrollbars=yes, menubars=no, toolbars=no, resizable=yes, left=0, top=0, width=" + width + ", height=" + height;
	//
	//	create the popup
	//
	popup_window = window.open(url, "ShowWindow" ,window_specs);
	popup_window.focus();
	//
} // End function create window
//