elsnet |
Organisation profile: Plantronics |
[ ID = 0381 ] | Plantronics |
---|---|
Organisation name | Plantronics |
Short name or acronym | Plantronics |
Organisation type | Company |
Activity type | Call centers |
Address | 345 Encinal Street |
Postal Code | 95060 |
City | Santa Cruz, CA |
Country | United States |
Phone | + +1 831 426 5858 |
Fax | + +1 831 426 3516 |
Organisation URL | http://www.plantronics.com/home.html |
Logo | Description |
Plantronics, Inc. introduced the first lightweight communications headset in 1962 and is today the world's leading designer, manufacturer and marketer of lightweight communications headset products. In addition, the Company produces products for the computer and mobile market segments, specialty telephone products, such as amplified telephone headsets, telephones for hearing-impaired users and noise-cancelling headsets and handsets for use in high-noise environments. Plantronics sells its audio-interface technology in all regions of the world through a global network that includes the industry's leading distributors, telephone companies, retailers and communications systems OEMs. | |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
Update this profile | 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" |