// JavaScript Document

function openExt() {
	var myURL = location.protocol + '//' + location.hostname;
	$('a[href^=http://]').not('[href^='+myURL+']').attr('target','_blank');
}
 