$(function(){
	$('a.product').attr('target','_blank').click(function(){
		sub = window.open(this.href, 'sub', "scrollbars,dependent,height=600,width=420");
		sub.focus();
		return false;	
	});	
});
