﻿$(document).ready(function()
{
	$(".ExternalLink").click(function(event)
	{
		var newWindow = window.open(this.getAttribute("href"), "_blank");
		newWindow.focus();
		return false;
	});
});