/**
  * Parses a template
  *
  * @param	string		$templatePath: the path to the template file
  * @param	string		$templateMarker: the marker subpart
  * @param	array		$aTags: array containing the values to render
  * @param	[type]		$aExclude: ...
  * @param	[type]		$bClearNotUsed: ...
  * @param	[type]		$aLabels: ...
  * @return	string		HTML string with substituted values
  */
 function _parseThrustedTemplate($templatePath, $templateMarker, $aTags = array(), $aExclude = array(), $bClearNotUsed = TRUE, $aLabels = array())
 {
     return tx_ameosformidable::_parseTemplate($templatePath, $templateMarker, $aTags, $aExclude, $bClearNotUsed, $aLabels, TRUE);
 }