
function externalLinks() {
	
	$('a[href*=upload]').attr({target: "_blank"});
} 
 
$(document).ready(function(){
	externalLinks();
});

