/**
  * Returns the URL of a "typolink" create from the input parameter string, url-parameters and target
  *
  * @param	object		cObject
  * @param	string		Link parameter; eg. "123" for page id, "*****@*****.**" for email address, "http://...." for URL, "fileadmin/blabla.txt" for file.
  * @param	array		An array with key/value pairs representing URL parameters to set. Values NOT URL-encoded yet.
  * @param	string		Specific target set, if any. (Default is using the current)
  * @param	array		Configuration
  * @return	string		The URL
  * @see getTypoLink()
  */
 function getTypoLink_URL_fh002($cObj, $params, $urlParameters = array(), $target = '', $conf = array())
 {
     $rc = FALSE;
     if (is_object($cObj)) {
         $out = tx_div2007_alpha::getTypoLink_fh002($cObj, '', $params, $urlParameters, $target, $conf);
         $rc = $cObj->lastTypoLinkUrl;
     }
     return $rc;
 }