function hpExtLinks(prop, val) {

	/* Only works on first link
	$("A["+prop+"='"+val+"']").each(function() {
		//window.open( $(this).attr('href') );
		$(this).attr("target","_blank")
		return false;
	});
	*/
	
	$("A["+prop+"*='"+val+"']").click( function() {
		window.open( $(this).attr('href') );
		return false;
	});

}

$(document).ready(function() {

	hpExtLinks('rel', 'external');

});