|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3768 ] | Cellmax |
---|---|
Organisation name | Cellmax Systems |
Short name or acronym | Cellmax |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | Atidim building 7 Entrance 2, floor 2 |
Postal Code | |
City | Tel Aviv |
Country | Israel |
Phone | +972 3-6484223 |
Fax | +972 3-6484226 |
marketing_(on)_cellmax-systems.com | |
Organisation URL | http://www.cellmax-systems.com |
Logo | Description |
![]() |
Specializes in voice biometrics. Cellmax provides products and technologies for voice identification, voice verification and speech authentication. Cellmax solutions enable fraud prevention, suspect location and prevent identity theft. Cellmax Systems enables a wide range of solutions for Banking, Privacy & Security, and Defense & Law Enforcement. |
Contact | |
Name | Mr. Eran Singer |
Function | VP Sales |
Department | Marketing |
eran_(on)_cellmax-systems.com | |
Phone | +972 3-6484223 |
Fax | + |
![]() |
Last update: 2007-05-25 09:45:48 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |