|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3464 ] | Move Offshore |
---|---|
Organisation name | Move Offshore |
Short name or acronym | Move Offshore |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | 18 Temple Avenue |
Postal Code | 600 015 |
City | Chennai |
Country | India |
Phone | + 00 91 44 5204 3803 |
Fax | + |
damien_(on)_move-offshore.com | |
Organisation URL | http://www.move-offshore.com |
Logo | Description |
![]() |
Move Offshore helps Small to Medium Businesses to find new customers by outsourcing a part or their Marketing and Sales. We offer 4 types of services: Database (creation and enhancement), Prospecting (qualifying contacts), Direct marketing (Telemarketing et Email marketing) and Telesales. We offer customized sales and marketing outsourcing services designed to meet the specific needs of each client. We plan to achieve clearly defined objectives in a cost-effective and expedient way. Our aim is to introduce your company to opportunities it would struggle to find and develop on its own. We will open you new doors and opportunities, while leveraging your brand. At the same time you will receive concise and regular reporting so you can always assess your sales and marketing operations. |
Contact | |
Name | CEO Damien Mann |
Function | |
Department | |
damien_(on)_move-offshore.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2004-12-21 19:59:10 #!/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" |