Organisation profile: NCS International
[ ID = 3725 ] | NCS International |
Organisation name | NCS International |
Short name or acronym | NCS International |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 5623 Willit |
Postal Code | 68152 |
City | Omaha |
Country | United States |
Phone | + 402-572-9292 |
Fax | + 402-571-4050 |
Email | jbeattyncs_(on)_aol.com |
Organisation URL | http://www.callcentersites.net |
Logo | Description |
 |
NCS specializes in Site Selection for Call Center,Customer Service,Contact Centers and Business Process Organizations. NCS conducts labor market and demographic analysis as well as identifying specific facilities for the organizations. NCS also maintains www.callcentersites.net a free website dedicated to providing location information worldwide.
|
| Contact |
Name | President James Beatty |
Function | Corporate |
Department | Corporate |
Email | jbeattyncs_(on)_aol.com |
Phone | + 402-572-9292 |
Fax | + 402-571-4050 |
Update this profile
|
Last update: 2006-12-23 02:47:52
#!/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"
|
|