// VOUCHER CODE SITE OPENER (ON MOUSEUP) FUNCTION //
$(function(){
	
	$(".voucher-inner").click(function(e) {
		theHREF = $(".voucherlink",this).attr("href");
		new_win = window.open(theHREF,'_blank','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
		//new_win.blur();
		// alert("voucherinner click");
		return false;
	});
	
	$(".voucherlink").click(function(e) {
		theHREF = $(this).attr("href");		
		new_win = window.open(theHREF,'_blank','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
		e.stopPropagation();
		e.preventDefault();
		return false;
	});
});
