/**
  * creates the XSLT generated output
  */
 function createXSLTContact($transformationFile)
 {
     $xml = ContactImportExport::xmlExport($this->contact);
     $x = new XSLTUtility($xml);
     return $x->transform($transformationFile);
 }