|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4099 ] | Outsource Telemarketing |
---|---|
Organisation name | Outsource-Telemarketing |
Short name or acronym | Outsource Telemarketing |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 9301 SW Sagert Street |
Postal Code | 97062 |
City | Tualatin |
Country | United States |
Phone | +866 440-8971 |
Fax | + |
info_(on)_outsource-telemarketing.com | |
Organisation URL | http://www.outsource-telemarketing.com |
Logo | Description |
![]() |
Outsource-Telemarketing.com is leading the industry by promoting positive and satisfying relationships with its clients and customers by providing a enthusiastic and professional environment for not only our customers, but our callers as well. We are more than happy to provide our customers with array of services including but not limited to inbound and outbound telemarketing , lead generation and qualifying, sales, polling, surveys, customer retention, appointment setting, order fulfillment, scheduling, and B2B and/or B2C telemarketing services. |
Contact | |
Name | Owner/CFO Stacey Wockenfuss |
Function | |
Department | |
stacey_(on)_outsource-telemarketing.com | |
Phone | +503 753-6198 |
Fax | + |
![]() |
Last update: 2009-06-05 19:30:44 #!/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" |