// JavaScript Document

function PopupWindow(url, handleName, height, width, appearance)
{
	// If "appearance" hasn't been defined, use the default one below...
	if (typeof(appearance) == "undefined")
	{
		appearance = "scrollbars=yes,status=no,toolbar=no,menubar=no";
	}

	// Pop up a window...
	var win = window.open(url, handleName, "width=" + width + ",height=" + height + "," + appearance);
	win.window.focus();
}
