| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 0358 ] | ICB Toll-Free Consultancy | 
|---|---|
| Organisation name | ICB Toll-Free Consultancy | 
| Short name or acronym | ICB Toll-Free Consultancy | 
| Organisation type | Company | 
| Activity type | Call centers | 
| Address | 160 East 26th Street, Suite 6E | 
| Postal Code | 10010 | 
| City | New York, NY | 
| Country | United States | 
| Phone | + +1 212 684 7210 | 
| Fax | + +1 209 391 9400 | 
| Organisation URL | http://www.800consulting.com | 
| Logo | Description | 
|  | ICB is a source of toll-free and vanity-related information and support, working with the Small Business Administration's Office of Advocacy on toll-free and domain name issues, and advising corporate users, call centers, marketing firms and trade associations, on applicable marketing, regulatory and legislative issues. | 
| Contact | |
| Name | Ms. Judith Oppenheimer | 
| Function | President | 
| Department | |
| joppenheimer_(on)_icbtollfree.com | |
| Phone | + +1 212 684 7210 | 
| Fax | + +1 209 391 9400 | 
|  Update this profile | Last update: 2002-04-10 12:32:58 #!/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" |