function NewWindow(Left, Top, Width, Height, Location)
	{
		var Attributes;
		var WinHandle;

		Attributes = ("Left=" + Left + ", ");
		Attributes += ("Top=" + Top + ", ");
		Attributes += ("ScreenX=" + Left + ", ");
		Attributes += ("ScreenY=" + Top + ", ");
		Attributes += ("Width=" + Width + ", Height=" + Height);

		WinHandle = window.open(Location, "WebsitePopupWindow820871", Attributes);
		WinHandle.focus();
	}