$(document).ready( function() {	/*************************************	* External site popup: rel="external"	**************************************/	$("a[@rel=*external]").click( function() {	window.open( $(this).attr('href') );	return false;	});		/***************************************	* External site popup	***************************************///	$(".bodycontent a").not("a[href^='" + window.location.protocol + '//' + window.location.host + "']").click(function(){//	window.open(this.href,'external');//	return false;//	}); //	$("#article a").not("a[href^='" + window.location.protocol + '//' + window.location.host + "']").click(function(){//	window.open(this.href,'external');//	return false;//	}); //	$(".box a").not("a[href^='" + window.location.protocol + '//' + window.location.host + "']").click(function(){//	window.open(this.href,'external');//	return false;//	}); 		}); 