| [ ID = 4874 ] | Asia Telecom | 
|---|
| Organisation name | Asia Telecom BPO | 
| Short name or acronym | Asia Telecom | 
| Organisation type | Private company | 
| Activity type | Call center with specific expertise in Language or Speech Technology | 
| Address | ## your street address or po box | 
| Postal Code | 1605 | 
| City | Pasig | 
| Country | Philippines | 
| Phone | +852 2877 7881 | 
| Fax | + | 
| Email | asiateloutsourcing_(on)_gmail.com | 
| Organisation URL | http://www.asiateloutsourcing.com | 
| Logo | Description | 
|---|
|  | 
Asia Telecom is a cost effective yet trusted BPO service, call centers support 
and creative service provider. We provide the best BPO services to your growing 
business.
 | 
|  | Contact | 
|---|
| Name | BPO Services - Business Process Outsourcing Service Provider | Call Centers Asia Telecom | 
| Function | ## your function | 
| Department | ## your department | 
| Email | asiateloutsourcing_(on)_gmail.com | 
| Phone | + | 
| Fax | + | 
|  Update this profile | Last update: 2017-04-12 11:22: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" | 
|---|