else if(tagName.compareToIgnoreCase("elseif") == 0)
return new CfmlTagElseIf(lineNum, match.startPos, match.endPos, tagName);
else if(tagName.compareToIgnoreCase("queryparam") == 0)
return new CfmlTagQueryParam(lineNum, match.startPos, match.endPos, tagName);
else if(tagName.compareToIgnoreCase("invokeargument") == 0)
return new CfmlTagInvokeArgument(lineNum, match.startPos, match.endPos, tagName);
else if(tagName.compareToIgnoreCase("function") == 0)
return new CfmlTagFunction(lineNum, match.startPos, match.endPos, tagName);
else if(tagName.compareToIgnoreCase("set") == 0)
return new CfmlTagSet(lineNum, match.startPos, match.endPos, tagName);
else