$(document).ready(function() {
	
	$('.table-plans tbody tr').click(function() {		
		window.open($('.tbl-go a', this).attr('href'), '_blank');
	});
	
});