$(document).ready(function(){
$("a").each(function (i) {
		if ($(this).attr('href').indexOf("http") != -1) {
			if(jQuery.browser.msie){
				$(this).attr('onclick','window.open(\'this.href\',\'status=yes,scrollbars=yes,directories=yes,menubar=yes,resizable=yes,toolbar=yes\'); return false;');
			}else{
			 $(this).attr('target','_blank');
			}
		}
	});
});

