$(document).ready(function(){
	$('a[rel="external"]').click( function() {
		window.open($(this).attr('href'),'',"status=0,toolbar=0,width=400,height=600,scrollbars=1");
		return false;
	});
});