StructAppend() the Forgotten Function

// Copy the URL into the Attributes sturct. Unless we want to explicitly get 
// information from the FORM variables (as we do in add/edit screens), we are 
// just going to get it from the Attributes object to make things simpler and
// the scoping more consistent.
REQUEST.Attributes = Duplicate(URL);
 
// Now, go over the form variables and copy those into attributes.
for (LOCAL.Key in FORM){
	REQUEST.Attributes[ LOCAL.Key ] = FORM[ LOCAL.Key ];
}

For Cut-and-Paste