<!--

function InitPage()
{
	SetExternalLinks();
	
}

var BaseInit = InitPage; // Pointer to original function in case it is overridden.




/* This code was found on wadny.com, and therefore credit is given. */

function SetExternalLinks() 
{
	if (!document.getElementsByTagName)
	{
		return null;
	}

	var anchors = document.getElementsByTagName("a");
	for (var i = 0; i < anchors.length; i++)
	{
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&  anchor.getAttribute("rel") == "external")
		{
			anchor.setAttribute("target", "_blank");
			anchor.setAttribute("title", "Opens in New Window");
		}
	}
}

/* End code snippet from wadny.com. */

// -->
