|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4792 ] | International Telemarketing |
|---|---|
| Organisation name | International Telemarketing SAS |
| Short name or acronym | International Telemarketing |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | Calle 9 # 49 69 Oficina 201 Edificio de Profesionales de la Novena |
| Postal Code | 427 |
| City | Santiago de Cali |
| Country | Colombia |
| Phone | +34 692098396 |
| Fax | +572 3100982 |
| gerencia_(on)_travelcenter.com.co | |
| Organisation URL | http://travelcenter.com.co/ |
| Logo | Description |
![]() |
International Telemarketing is part of the Travel Center Group. We are proud to provide our clients a service experience beyond imagined. The main focus of our work relies on consistency, excellence, and service. We work with a variety of companies that range from pharmaceutical to tourism, the last one being our specialty. Our efforts are focused mainly in South America. |
| Contact | |
| Name | Sr. Diego Quiroz |
| Function | Chief Executive Officer |
| Department | Transversal |
| gerencia_(on)_travelcenter.com.co | |
| Phone | +34 642098396 |
| Fax | + |
|
|
Last update: 2016-01-19 19:14:14 #!/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" |