$(document).ready( function() {
	$('div#boxList a.box').click(function() {
		var w = window.open( $(this).attr('href'), '__blank', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=625,height=800');
		w.focus();
		return false;
	});
});