function showcoupons(url) { window.open(url); $('.couponhider').hide(); $('.couponshower').show(); return false; }
$(document).ready(function() { $('.couponhider a').click(function() { return showcoupons($(this).attr('href')); }); });
