Organisation profile: Global Innovative Marketing
| [ ID = 4323 ] | Marketing Contracts for Call centers |
| Organisation name | Global Innovative Marketing |
| Short name or acronym | Marketing Contracts for Call centers |
| Organisation type | Private company |
| Activity type | Other Call Center related expertise |
| Address | 2929 Lawrence Ave East, Suite # 208, |
| Postal Code | L1S 7R9 |
| City | Scarborough |
| Country | Canada |
| Phone | +1 416-559-0074 |
| Fax | + |
| Email | harry_(on)_globalim.ca |
| Organisation URL | http://www.globalim.ca |
| Logo | Description |
 |
Sales & Inbound campaigns & Contracts for Call centers offshore from various Companies in North America
Database List brokers for USA, Canada, UK, Australia & UAE
|
|
| Contact |
| Name | Business Development Partner Haresh Nankani |
| Function | |
| Department | Sales & Marketing |
| Email | info_(on)_dblist.net |
| Phone | +1 416-559-0074 |
| Fax | + |
Update this profile
|
Last update: 2010-10-14 21:15:24
#!/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"
|
|