while(tag!=null) {
if(tag instanceof CFTag && minLevel<=(level++)) {
cfTag=(CFTag)tag;
if(cfTag instanceof CFTagCore){
CFTagCore tc=(CFTagCore) cfTag;
if((tc.getName()+"").equalsIgnoreCase(pureName))
return cfTag;
if(StringUtil.startsWithIgnoreCase(pureName,"cf")) {
pureName=pureName.substring(2);
}
if((tc.getName()+"").equalsIgnoreCase(pureName))
return cfTag;
}
else if( cfTag.getAppendix().equalsIgnoreCase(pureName)) {
return cfTag;
}