if [ $WEB -eq 0 ] && [ $WEB_status -eq 0 ]
then
mail -s "WEB Server web service down" kayung@sparqnet.net < /root/test
echo 'WEB Server web service down' > /root/WEB-status
elif [ $WEB -eq 1 ] && [ $WEB_status -eq 1 ]
then
mail -s "WEB Server web service live" kayung@sparqnet.net < /root/test
echo > /root/WEB-status
fi