|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1391 ] | OLYMPUS Optical Co. (Europa) GmbH |
---|---|
Organisation name | OLYMPUS Optical Co. (Europa) GmbH |
Short name or acronym | OLYMPUS Optical Co. (Europa) GmbH |
Organisation type | Company |
Activity type | Speech technology |
Address | Wendenstr. 14-18 |
Postal Code | 20097 |
City | Hamburg |
Country | Germany |
Phone | + +49 40 23773 0 |
Fax | + +49 40 23773 653 |
dss_(on)_olympus-europa.com | |
Organisation URL | http://www.olympus.com |
Logo | Description |
![]() |
Focusing on precision equipment and opto-digital systems, OLYMPUS pioneers key technologies for both, consumers and industry. The major profession is in the fields of imaging and information systems Analogue and digital cameras, digital printer and accessories, microcassette tape recorders, digital voice recorders, optical data storage systems, multimedia displays and binoculars. Medical systems and life sciences endoscopes, microscopes, diagnostics and other advanced medical equipments. Industrial instruments applications microscopes, remote visual inspection (non-destructive internal testing), high speed video and security applications. |
Contact | |
Name | Jutta Henke |
Function | Communication Manager |
Department | |
jutta.henke_(on)_olympus-europa.com | |
Phone | + |
Fax | + |
![]() |
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" |