function getcoupan(c_id)
{		
	$.ajax({
	  url: "http://www.shopnvouchers.co.uk/detail_coupon_ajax.php?c_id="+c_id,
	  cache: false,
	  success: function(html){	
		$("#coupan"+c_id).html(html);
	  }
	});
	  
}		