[ ID = 3296 ] | bottomline or bottomlinespeechlab |
Organisation name | Bottomline Interactive Multimedia Speech Laboratory |
Short name or acronym | bottomline or bottomlinespeechlab |
Organisation type | Private company |
Activity type | Other expertise relevant for Language or Speech Technology |
Address | 732 Bassmayor Road, Daliao, Toril |
Postal Code | 8025 |
City | Davao City |
Country | Philippines |
Phone | +63 082-291-3789 |
Fax | + |
Email | bottomlinespeechlab_(on)_yahoo.com |
Organisation URL | |
Logo | Description |
 |
Assembler-distributor of Diagnostic Speech Laboratory;
Digital Language Laboratory and
Call Center Training Laboratory System.
Both products are pre-loaded
with pedagogical language lessons and teacher's diagnostic tools, using the
voice waveform comparison technology.
The pre-loded pedogogical lessons
give emphases on the following: - phonetic articulation - word drills
and sentence drills - stress - blending - timing - rhythm -
intonation - listening and comprehension skills development through
video presentation - interactive dialogue with a native speaker of
English - dramatization - public speaking techniques and
strategies
The Call Center Learning Laboratory System has additional
pre-loaded simulated courseware, as follows: - Basic Communications -
Communicating With Difficult People - Cross-cultural Communications -
Outsourcing - Inbound Calls Management - Telephone Skills Training
- Call Center Management - Customer Care Management
Products may be
customized to suit our clients' need and budget.
|
Member of elsnet
| Contact |
Name | Mr. Bernardo Basmayor |
Function | Administrator |
Department | Marketing |
Email | bottomlinespeechlab_(on)_yahoo.com |
Phone | +63 082-291-3789 |
Fax | + |
Update this profile
|
Last update: 2011-06-02 11:56:45
#!/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"
|