﻿$(document).ready(function(){
	//$(".coupon_c_page").html($(".CouponPage").html());
});
//优惠券列表
function couponpre(){
	list_t=$("#list").position().top;
	if(list_t<-0){$("#list").animate({top:"+=76px"},"slow"); }
	//else{$.prompt('已经是最顶部了！',{show:'slideDown'}).children('.jqi').corner();}
}
function couponnext(){
	couponlist_h=$("#list").height();
	list_h=$("#list").height();
	list_t=$("#list").position().top;
	if(list_t>-(list_h-380)){
		$("#list").animate({top:"-=76px"},"slow"); 
	}
}

function printme(){	
   var str=""; 
   $("[name='print'][checked]").each(function(){str+=$(this).val()+","; });
   if(str==""){
	   $.prompt('<br><br>請選擇要打印的優惠券！<br><br>',{show:'slideDown'}).children('#colsJqi').corner();
   }else{
	   $("#printf").attr("src","print.asp?list="+str+"&t="+Math.random());
   }
}

function printall(){
   var str=""; 
   $("[name='print']").attr("checked",'true');//全选 
   $("[name='print'][checked]").each(function(){str+=$(this).val()+","; });
   $("#printf").attr("src","print.asp?list="+str+"&t="+Math.random());
}
