|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2890 ] | GM Voices, Inc. |
---|---|
Organisation name | GM Voices, Inc. |
Short name or acronym | GM Voices, Inc. |
Organisation type | Private company |
Activity type | Translation or Localisation center with specific expertise in Language or Speech Technology |
Address | 2001 Westside parkway, Suite 240 |
Postal Code | 30004 |
City | Alpharetta, GA |
Country | United States |
Phone | + 1 770 752 4500 |
Fax | + 1 770 752 4545 |
sales_(on)_gmvoices.com | |
Organisation URL | http://www.gmvoices.com |
Logo | Description |
![]() |
GM Voices, Inc. is the global leader in professionally recorded voice, localization and voice branding solutions. Since opening its studio doors in 1985, the company's expert team of engineers, support staff and natural-sounding, professional voice actors has enabled companies to communicate with their clients - in any language. GM Voices recently relocated to a 10k sq ft state-of-the-art recording studio complex in Alpharetta, GA where they record over 5,000 messages each week. To learn more, visit "Your Voice to the World! www.gmvoices.com |
Contact | |
Name | Executive Assistant Caryn Konrad |
Function | |
Department | |
ckonrad_(on)_gmvoices.com | |
Phone | + 1 770 752 4500 |
Fax | + |
![]() |
Last update: 2008-02-20 18:53:57 #!/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" |