* @param id The ID of the WebTML tag.
*/
public TMLContext getContextFromTag(String id) {
java.util.Map tags = (java.util.Map) _pageContext.getRequest().getAttribute("TagIds"); // Get a map of tags, keyed by their tag ids
Base tag = (Base) tags.get(id); // Fetch the tag with id "fetchMe"
return tag.getTMLContext(); // Get the TMLContext-Object
}