﻿function externalLinks()
{
	$ES("a[rel^=External]", "Content").each(function(a){ a.target = "_blank"; });
}

window.onDomReady(externalLinks);