elsnet |
Organisation profile: Tikal Networks Ltd. |
[ ID = 4497 ] | Tikal |
---|---|
Organisation name | Tikal Networks Ltd. |
Short name or acronym | Tikal |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | Odem 3 Street |
Postal Code | 3409 |
City | Petach Tikva |
Country | Israel |
Phone | +972 73-2209199 |
Fax | +972 73-2209001 |
info_(on)_tikalnetworks.com | |
Organisation URL | http://www.tikalnetworks.com |
Logo | Description |
Since 2004 Tikal Networks has been a developer and integrator of Asterisk IP telephony & contact center systems and solutions. The companys engineers combine a unique combination of expertise in design, development, integration and operation and development of VOIP, IVR, Broadcasting, Call Recording and Billing technologies. Tikal Networks via its new CenterMeter service empowers service providers and enterprises to build private and public cloud contact center solutions. The companys services and solutions enable call centers to operate efficiently, optimize the cost and quality of every customer interaction, create new ways to profit and ensure ongoing customer-based business improvement and growth. Tikal designed and operates IP telephony and call centers and contact centers to hundreds of worldwide organizations in various industries, including finance, health-care, insurance, education, trading, ISP's and more, serving over 20,000 agents. | |
Contact | |
Name | VP MArketing Daphna Rosenbaum |
Function | Vice President |
Department | Marketing |
daphnar_(on)_tikalnetworks.com | |
Phone | +972 73-2209108 |
Fax | +972 73-2209001 |
Update this profile | Last update: 2012-08-12 14:29:27 #!/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" |