|
|
Organisation profile: Tekbuzz Marketing Ltd.
[ ID = 3532 ] | Tekbuzz |
Organisation name | Tekbuzz Marketing Ltd. |
Short name or acronym | Tekbuzz |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | 10 Wynford Heights Crescent #125 |
Postal Code | M3C 1K8 |
City | North York, Ontario |
Country | Canada |
Phone | +1 416 510 1943 |
Fax | +92 21 2787251 |
Email | mtalpur_(on)_tekbuzz.ca |
Organisation URL | http://www.tekbuzz.ca |
Logo | Description |
|
Tekbuzz Marketing Ltd and its offshore facility Tekbuzz Call Solutions, located in Karachi, Pakistan offer a variety of services with the added ability of operating in both English,as well as Pakistani dialects.The company was established in 2001,and has worked on projects in the telecommunications fields as well as cable services industry.We offer both outbound and inbound call services with customer care and back office processes for almost any size and type of organization.Our Call Centre operates 24x7 throughout the world. We can handle Regional, National or International campaigns.Tekbuzz ensures exceptional client experience through world class talent,strong management focus, and the ability to expand with demand.
|
| Contact |
Name | general manager Chris Thompson |
Function | resource, research and sales |
Department | management |
Email | cthompson_(on)_tekbuzz.ca |
Phone | +1 416 510 1943 |
Fax | +1 416 915 2111 |
Update this profile
|
Last update: 2005-05-10 20:09:17
#!/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"
|
|