|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0220 ] | CMA |
---|---|
Organisation name | Communications Managers Association |
Short name or acronym | CMA |
Organisation type | Association |
Activity type | Call centers |
Address | 666 Fifth Avenue, #337 |
Postal Code | 10103 |
City | New York, NY |
Country | United States |
Phone | + +1 212 957 9068 |
Fax | + |
info_(on)_cma.org | |
Organisation URL | http://www.cma.org |
Logo | Description |
![]() |
The Communications Managers Association (CMA) sponsors at least six educational sessions per year in New York City. Session topics reflect the evolving telecom/information technology (IT) environment and address the growing and diversifying needs of CMA members. Additionally, the group publishes a Web site (www.cma.org) and a quaterly newsletter, the CMA Review, both of which are widely read and utilized by its membership and other industry figures. |
Contact | |
Name | Mr. William M. Moore |
Function | President |
Department | |
president_(on)_cma.org | |
Phone | + +1 212 708 9813 |
Fax | + +1 212 333 1141 |
![]() |
Last update: 2003-02-04 17:52: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" |