|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2049 ] | JustTalk Inc. |
---|---|
Organisation name | JustTalk Inc. |
Short name or acronym | JustTalk Inc. |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 217 Third Street |
Postal Code | 48103 |
City | Ann Arbor, Mich. |
Country | United States |
Phone | + +1 734 623 7954 |
Fax | + +1 734 623 7965 |
contact_(on)_justtalk.com | |
Organisation URL | http://www.justtalk.com |
Logo | Description |
![]() |
JustTalk, Inc. is a provider of interactive, speech-driven solutions connecting mobile professionals with enterprise information via any phone. JustTalk enables users to capture new data, access existing data and share data with other users while seamlessly integrating with enterprise systems starting with sales-customer relationship management (CRM) software. |
Contact | |
Name | Ms. Julie Kendall |
Function | |
Department | |
jkendall_(on)_justtalk.com | |
Phone | + +1 734 623 7954 |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |