elsnet |
Organisation profile: Hit Rate Solutions |
[ ID = 3932 ] | HRS |
---|---|
Organisation name | Hit Rate Solutions |
Short name or acronym | HRS |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 12 Stockholm Rd |
Postal Code | 02123 |
City | Boston |
Country | United States |
Phone | +212 738-9255 |
Fax | + |
info_(on)_hitratesolutions.com | |
Organisation URL | http://www.hitratesolutions.com |
Logo | Description |
![]() |
Hit Rate Solutions provides American owned, operated, and managed facilities in the Philippines to deliver results for our customers in the US, UK and Oceania regions. We are focused on traditional call center activity such as inbound and outbound sales, customer service, and telemarketing, as well as non-traditional services such as financial services and legal process outsourcing. We serve Small and Medium sized companies delivering top level BPO service at a cost point that makes sense. We provide a quality technical infrastructure that allows each of our reps to maximize his ability through various CRM, Knowledge Management and other web applications. Our infrastructure combined with our management's unique training process delivers high quality results at an affordable cost. We can create, tailor, manage, or optimize any type of marketing campaign. Our friendly, educated, and enthusiastic telemarketers can quickly and effectively help your organization acheive the results you desire. |
Contact | |
Name | Co-Founder |
Function | COO |
Department | Operations |
info_(on)_hitratesolutions.com | |
Phone | +212 738-9255 |
Fax | + |
![]() |
Last update: 2011-10-03 15:41:19 #!/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" |