Organisation profile: 7 West Communications
[ ID = 1330 ] | 7 West Communications |
Organisation name | 7 West Communications |
Short name or acronym | 7 West Communications |
Organisation type | Company |
Activity type | Call centers |
Address | 14525 Highway 7, Ste 145 |
Postal Code | 55345 |
City | Minnetonka, MN |
Country | United States |
Phone | + +1 952 936 4000 |
Fax | + +1 952 933 9664 |
Email | 7west_(on)_7west.com |
Organisation URL | http://www.7west.com |
Logo | Description |
 |
7 West Communications Inc, has been serving the
telemarketing & telephone answering service needs of our clients for
23 years. Serving small and large businesses is our business
|
| Contact |
Name | Ms. Tami Kay |
Function | Business Services Manager |
Department | |
Email | tkay_(on)_7west.com |
Phone | + +1 952 936 4000 |
Fax | + +1 952 933 9664 |
Update this profile
|
Last update: 2003-11-03 15:13:16
#!/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"
|
|