$(document).ready(function() {
	$("a.download").click(function() {
		var href = $(this).attr("href");
		window.open(href,'name','fullscreen=yes');
		return false;
	});
});