/**
  * Returns the URL of a "typolink" create from the input parameter string, url-parameters and target
  *
  * @param	object		tx_div2007_alpha_language_base object
  * @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_fh001($langObj, $params, $urlParameters = array(), $target = '', $conf = array())
 {
     tx_div2007_alpha::getTypoLink_fh001($langObj, '', $params, $urlParameters, $target, $conf);
     $rc = $langObj->cObj->lastTypoLinkUrl;
     return $rc;
 }