|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3417 ] | DOW Networks |
---|---|
Organisation name | DOW Networks - Call Center Solutions - VoIP Solutions |
Short name or acronym | DOW Networks |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | 1000 Circle 75 Parkway, Suite 045 |
Postal Code | 30339 |
City | Atlanta, Georgia |
Country | United States |
Phone | + 1-770-937-9519 |
Fax | + 1-770-937-9720 |
james_(on)_downetworks.com | |
Organisation URL | http://www.downetworks-callcenter.com |
Logo | Description |
![]() |
DOW Networks is a next-generation telecommunications service provider focused on serving Call Centers, Business Processing Outsource Centers (BPOs) and other international businesses. DOW Networks is a leader in providing Voice Over IP (VoIP) solutions which save call centers, BPOs and other international businesses up to 70% on their international calls. DOW Networks can provide economical inbound and outbound telecom services to your call center or business, no matter what the size. |
Contact | |
Name | Mr. Jason Reynolds |
Function | Webmaster |
Department | Internet |
jason_(on)_downetworks-callcenter.com | |
Phone | + 1-770-937-9735 |
Fax | + 1-770-937-9720 |
![]() |
Last update: 2004-09-16 17:30:33 #!/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" |