Organisation profile: WOW Corporation, LLC
| [ ID = 3423 ] | WOW |
| Organisation name | WOW Corporation, LLC |
| Short name or acronym | WOW |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Lang+Speech Technology |
| Address | 555 N. Bell Ave. |
| Postal Code | 15106 |
| City | Carnegie |
| Country | United States |
| Phone | + +1732-412-9071 |
| Fax | + +1412-278-3371 |
| Email | gagan_(on)_wowcorp.com |
| Organisation URL | http://www.wowcorp.com |
| Logo | Description |
 |
We are a young organisation growing at 300% annually with expertise in Voice,
Data Conversion and Claim Processing processes.
|
|
| Contact |
| Name | Director Outsourcing Gagan Chaudhry |
| Function | Business Development |
| Department | Sales |
| Email | gagan_(on)_wowcorp.com |
| Phone | + +1732-412-9071 |
| Fax | + +1412-278-3371 |
Update this profile
|
Last update: 2004-09-22 16:07:21
#!/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"
|
|