|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0106 ] | Blue-Comm BV |
---|---|
Organisation name | Blue-Comm BV |
Short name or acronym | Blue-Comm BV |
Organisation type | Company |
Activity type | Call centers |
Address | Corn. Trooststraat 4-6 |
Postal Code | 1072 JE |
City | Amsterdam |
Country | Netherlands |
Phone | + +31 20 6704020 |
Fax | + +31 20 6792822 |
sales_(on)_blue-comm.nl | |
Organisation URL | http://www.blue-comm.nl |
Logo | Description |
![]() |
Blue-Comm BV is in 1987 opgericht met als doel producten te ontwikkelen en op de markt te brengen die niet door anderen uitgebracht werden of waar nog een bepaalde functionaliteit aan toegevoegd kon of moest worden. Uit de opgedane ervaring met de Twin-Line ontwikkelde Blue-Comm nog tal van andere producten. Blue-Comm kwam er al snel achter dat niet 'alles' zelf ontwikkeld kon en kanworden. Daarom sloten wij distributie-overeenkomsten met diverse fabrikanten gerenommeerde merken telecom producten. |
Contact | |
Name | |
Function | |
Department | |
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" |