//popup.js

$(document).ready(function(){
	$.popunder([{
	    url: '/?mode=pop',
		features: { width: 150 }
	}], { perSession: true });
			
	$('#reset').click(function(e){
		$.popunder('reset');
				
		e.stopPropagation();
		e.preventDefault();
	});
});

