Organisation profile: Telrad Networks, Inc.
| [ ID = 0536 ] | Telrad Networks, Inc. |
| Organisation name | Telrad Networks, Inc. |
| Short name or acronym | Telrad Networks, Inc. |
| Organisation type | Company |
| Activity type | Call centers |
| Address | 135 Crossways Park Drive |
| Postal Code | 11797 |
| City | Woodbury, NY |
| Country | United States |
| Phone | + +1 516 921 8300 |
| Fax | + +1 516 682 3380 |
| Email | israel.ronn_(on)_telradusa.com |
| Organisation URL | http://www.telradusa.com |
| Logo | Description |
 |
Telrad Networks is a major manufacturer of
telecommunications equipment and has worldwide sales in excess of $440
million.. Formerly Telrad Telecommunication and Electronic Industries
Ltd. (TTE), the name was changed to Telrad Networks (TN) to more
clearly represent the company's structure and direction
|
|
| Contact |
| Name | |
| Function | |
| Department | |
| Email | |
| Phone | + |
| Fax | + |
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"
|
|