function createProcessorByOption ($opt) {
		if (is_string($opt))
			$opt = new StylesheetOptions($opt);
		$conv = $opt->getValue('processor.xslt');
		return XSLTProcessorFactory::createProcessor($conv);
	}