|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2603 ] | GTN |
---|---|
Organisation name | Global Touch Network Corp. |
Short name or acronym | GTN |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 151 York St. |
Postal Code | N6A 1A8 |
City | London, ON |
Country | Canada |
Phone | +1 519 433-9939 |
Fax | +1 519 679-3275 |
vmorgan_(on)_callgtn.com | |
Organisation URL | http://www.callgtn.com |
Logo | Description |
![]() |
Over ten years of high quality, award winning call center outsource experience. Provides technical and help desk support for WISP, ISP, Hotel and hotspot wireless, consumer electonics, software, telco's and more throughout North America and Europe. Also expertise in outbound lead generation particularly for technology companies and telco's. BPO (business process outsourcing) for the travel and airline industries. English, French, Arabic and Spanish. Call Centers in London, Ontario, Vierzon France and Amman Jordan. |
Contact | |
Name | Global Director of Sales Val Morgan |
Function | Sales and Marketing |
Department | |
vmorgan_(on)_callgtn.com | |
Phone | +1 519 433-9939 |
Fax | +1 519 679-3275 |
![]() |
Last update: 2007-11-21 16:34:46 #!/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" |