|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2738 ] | International Association for Language and Business (IALB) |
---|---|
Organisation name | International Association for Language and Business (IALB) |
Short name or acronym | International Association for Language and Business (IALB) |
Organisation type | Association |
Activity type | Speech technology |
Address | |
Postal Code | |
City | |
Country | Belgium |
Phone | + |
Fax | + |
Organisation URL | http://www.kwa.unisg.ch/sprachlabor/ialb/ |
Logo | Description |
![]() |
Our objectives are to contribute towards improving the general level of foreign language knowledge and the application of the same in trade and industry through close cooperation between trade, industry, education, and research, particularly by + Promoting the practical study of foreign languages and culture (in particular the political, economic, social, and cultural institutions and structures) within the scope of business schools, economics faculties and technical universities, and similar comparable institutions, including language schools. + Information of trade, industry, and institutions in the spirit of Paragraph (1) and also of the public in general as to the principal significance and practical opportunities of foreign-language training and further education in foreign studies. + Promotion of cooperation between the training and research institutions involved within the scope of special working committees. |
Contact | |
Name | Professor Dr. Jean Klein |
Function | President |
Department | |
jean.klein_(on)_umh.ac.be | |
Phone | + +32 65 37 36 21 |
Fax | + +32 65 37 36 22 |
![]() |
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" |