/*
 * coupon.js
 *
 * @modified: 2008/10/01
 */

$(function(){
	$('#acoupon').click(function() {
		window.open($(this).attr('href'),"coupon",'scrollbars=yes,width=640,height=400,top=100,left=100');
		return false;
	});
});

