|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3286 ] | Chameleon Headsets |
|---|---|
| Organisation name | Chameleon Headsets |
| Short name or acronym | Chameleon Headsets |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | P.O. Box 1336 |
| Postal Code | 91358-0336 |
| City | Thousand Oaks, California |
| Country | United States |
| Phone | +011 1 805 480 9162 |
| Fax | +011 1 805 499 - 8778 |
| wburke_(on)_chameleonheadsets.com | |
| Organisation URL | http://www.chameleonheadsets.com |
| Logo | Description |
![]() |
Chameleon Headsets is a premier manufacturer of call center and wireless telephony - Company produces headsets, connecting cords, accessories and specialized headset solutions for |
| Member of elsnet | Contact |
| Name | Bill Burke |
| Function | US Sales |
| Department | US Sales / Distribution for Chameleon Headsets |
| wburke_(on)_chameleonheadsets.com | |
| Phone | +011 1 805 480 9162 |
| Fax | +011 1 805 499 - 8778 |
|
|
Last update: 2007-02-20 08:10:16 #!/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" |