|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1715 ] | LGS, an IBM Company |
---|---|
Organisation name | LGS, an IBM Company |
Short name or acronym | LGS, an IBM Company |
Organisation type | Company |
Activity type | Messaging and Interaction Management |
Address | 1220 Sheppard Ave. E., Suite 300 |
Postal Code | M2K 2S5 |
City | Toronto |
Country | Canada |
Phone | + 416-718-3456 |
Fax | + 416-718-3450 |
imsinfo_(on)_lgs.com | |
Organisation URL | http://www.lgs.com |
Logo | Description |
![]() |
LGS Messaging and Interaction Management practice provides industry-leading technology and management solutions that include consulting, design, implementation and support in the areas of Contact Centres and Unified Communications. Our contact centre solutions enable the seamless integration of multiple communication channels, including voice, Interactive Voice Response (IVR), voice messaging, and fax. In addition, LGS provides management of e-mail and web interactions and agent empowerment tools such as agent scripting, quality monitoring and recording, workforce management, and more. In the unified communications space, LGS has implemented telephony and messaging systems in over 600 sites in Canada, delivering robust and diverse voice processing, messaging and IVR applications. But now with expressTalk callers have the ability to interact with your organization in a natural spoken dialogue as though they were talking to a live operator! With expressTalk, our natural speech solution, callers have the ability to interact with your organization in a natural spoken dialogue as though they were talking to a live operator! expressTalk completes connections quickly and smoothly, thus reducing the need for callers to input touch-tone commands, or to wait on hold to reach a receptionist. And for rotary callers it provides a self-serve option they never had before. The results are an enhanced image for your organization, increased staff productivity, and more satisfied customers. |
Contact | |
Name | Ms. Ania Daleszynska |
Function | Marketing Manager |
Department | Marketing |
ania_daleszynska_(on)_lgs.com | |
Phone | + 416-718-3456 |
Fax | + 416-718-3450 |
![]() |
Last update: 2002-04-24 17:34:55 #!/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" |