|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4607 ] | EBCC |
|---|---|
| Organisation name | Executive Boutique Call Center |
| Short name or acronym | EBCC |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | 12 Flr Skyrise 2 Building IT Park Lahug |
| Postal Code | 6000 |
| City | Cebu City |
| Country | Philippines |
| Phone | +1 888-700-9555 |
| Fax | +61 280-155-330 |
| info_(on)_ebcallcenter.com | |
| Organisation URL | http://ebcallcenter.com/index.php |
| Logo | Description |
![]() |
Executive Boutique is an outsourcing firm that operates a main call center and business outsourcing facility in Cebu City, Philippines. We employ college educated call center operators with experience in telemarketing, customer service, surveys, and BPO. Executive Boutique is a trusted outsourcing partner to companies in the US, Canada, Europe and Australia. With Executive Boutique's state-of-the-art systems and experienced agents, companies of any size can expand their staff at a fraction of the cost of hiring full-time U.S.-based employees. Executive Boutique's Philippine call center, business process outsourcing, and virtual agents cover all your business support service needs while saving your company money. Our main services : * Lead generation and surveys * Inbound Calling * Outbound Calling * Business Process Outsourcing (BPO) * Virtual Assistants * Surveys Other services includes: * Email and Chat Support * Sales Support * Customer Service * Sales Lead Generation * Telemarketing * Data Entry, Market Research and Surveys |
| Contact | |
| Name | Mr David Williams |
| Function | Call Center Marketing Manager |
| Department | Marketing and Operations |
| info_(on)_ebcallcenter.com | |
| Phone | +1 888-700-9555 |
| Fax | + |
|
|
Last update: 2013-10-30 05:23:26 #!/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" |