|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2120 ] | Focal |
---|---|
Organisation name | Focal Communications Corporation |
Short name or acronym | Focal |
Organisation type | Local phone and data services provider |
Activity type | |
Address | 200 N. LaSalle Street, Suite 1100 |
Postal Code | 60601 |
City | Chicago, IL |
Country | United States |
Phone | + +1 312 895 8400 |
Fax | + +1 312 895 8403 |
pr_(on)_focal.com | |
Organisation URL | http://www.focal.com |
Logo | Description |
![]() |
Focal Communications Corporation (www.focal.com) is a leading national communications provider. Focal offers a range of solutions, including local phone and data services, to communications-intensive customers. Nearly half of the Fortune 100 use Focals services, in 23 top U.S. markets. Focals common stock is traded on the Nasdaq National Market under the symbol FCOM. |
Contact | |
Name | Director Public Relations Arianne Venuso |
Function | Public Relations |
Department | Marketing |
Phone | + 312-895-8274 |
Fax | + 312-895-0098 |
![]() |
Last update: 2002-04-15 16:42:55 #!/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" |