﻿
	

//优惠券彩信下载
function msm(id)
{
    var parent_url=window.location.href;
    if(Validate_Login()==true)
    {
        var num=document.getElementById("num"+id).value;
        if(parseInt(num)<=0)
        {
            alert("[提示]此优惠券剩余数量为0张，请选择打印");
            return;
        }
        else
        {
            var cps_id=document.getElementById("cps"+id).value;
            var user_id=document.getElementById("hid_user_id").value;
            JqueryDialog.Open("彩信优惠券", "http://coupon.51qianyan.com/SendCoupon_Msm.aspx?cps_id="+cps_id+"&parent_url="+parent_url, 300, 150);
        }
    }
    else
    {
         var cps_id=document.getElementById("cps"+id).value;
         var user_id=document.getElementById("hid_user_id").value;
         JqueryDialog.Open("彩信优惠券", "http://coupon.51qianyan.com/Mess_Msm.aspx?cps_id="+cps_id+"&parent_url="+parent_url, 320, 260);
    }
}

//优惠券短信下载
function sms(id)
{
   if(Validate_Login()==true)
    {
        var parent_url=window.location.href;
        var num=document.getElementById("num"+id).value;
        var cps_id=document.getElementById("cps"+id).value;
        var user_id=document.getElementById("hid_user_id").value;
        JqueryDialog.Open("短信优惠券", "http://coupon.51qianyan.com/SendCoupon_Sms.aspx?cps_id="+cps_id+"&parent_url="+parent_url, 300, 150);
    }
    else
    {
         var cps_id=document.getElementById("cps"+id).value;
         var user_id=document.getElementById("hid_user_id").value;
         JqueryDialog.Open("短信优惠券", "http://coupon.51qianyan.com/Mess_Sms.aspx?cps_id="+cps_id+"&parent_url="+parent_url, 320, 260);
    }
}

//优惠券打印
function print(id)
{
     if(Validate_Login()==true)
     {
          window.open("http://coupon.51qianyan.com/CouponPrint.aspx?cps_id="+id);
     }
     else
     {
         alert("[提示]抱歉，您还没有请登录后在进行操作");
         return;
     }
}
