$FUNCNAME$
	HASHSTR()
$CATEGORY$
	STRING, NUMERIC, CONVERSION
$SUMMARY$
	Returns hash code for string.
$LANG_RU$
	 - .
$SYNTAX$
	HASHSTR(<sStr>) 	--> <nHashCode>
$ARGUMENTS$
     <sStr>	String, is the string to convertion.
$LANG_RU$
     <sStr>	String,  
$RETURNS$
     Returns the numeric value - hash code, what was converted from string.
$LANG_RU$
        - -,   .
$DESCRIPTION$

     HASHSTR() calulates hash code from string <sStr> and returns it as numeric
     value <nHashCode>. Hash code has unique values into range of 1000000 to MAX_LONG.
$LANG_RU$

     HASHSTR()  -   <sStr>     
     . -       1000000  MAX_LONG.
$EXAMPLES$

HASHSTR("asdf")		// --> 1886203041
HASHSTR("ASDF")		// --> 1190707477
HASHSTR("aSdF")		// --> 1934510729

$PLATFORMS$
$SEEALSO$
	HASHNAME()
$AUTHOR$
ITK
   $LANG_RU$

$END$

$FUNCNAME$
	HASHNAME()
$CATEGORY$
	STRING, NUMERIC, CONVERSION
$SUMMARY$
	Returns string from hash values.
$LANG_RU$
	 ,     -.
$SYNTAX$

	HASHNAME(<nHashCode>) 	--> <sStr>

$ARGUMENTS$
     <nHashCode>	Numeric, is the source hash code.

$LANG_RU$
     <nHashCode>	Numeric,  -.

$RETURNS$

     Returns the string, from what was converted hash code.

$LANG_RU$

      ,     -.

$DESCRIPTION$

     HASHNAME() returns sources string for hash code <nHashCode>.
$LANG_RU$

     HASHNAME()   ,     - <nHashCode>.
$EXAMPLES$

HASHSTR("asdf")		// --> 1886203041
HASHNAME(1886203041)	// --> asdf

$PLATFORMS$
$SEEALSO$
	HASHSTR()
$AUTHOR$
ITK
   $LANG_RU$

$END$

