﻿
$(document).ready(function(){               

    $('.sendsms_link').click(function(){
        var txt = $('#send_greeting_sms').html()
        $('#msgPopUp').html( txt ).show()
    }) 
    

    $('.send_reminder_sms').click(function(){
        var txt = $('#send_reminder_sms').html()
        $('#msgPopUp').html( txt ).show()
    }) 
    
    $('.send_greeting_sms_footer').click(function(){
        var txt = $('#send_greeting_sms').html()
        $('#msgPopUp').html( txt ).show()
    }) 
    
});

