function setElinks()
{
	var spans = document.getElementsByTagName("span");
	for (var i = 0; i < spans.length; i++)
	{
		if (spans[i].className == "eLink")
		{
			spans[i].onmouseover = new Function('this.className = "eLinkOver";');
			spans[i].onmouseout = new Function('this.className = "eLink";');
			spans[i].onclick = new Function('this.className = "eLink";location.href = this.getAttribute("url");');
		}
	}
}
function setTargetinPostLinks()
{
	var postLinks = document.getElementsByTagName("a");
	for (var i = 0; i < postLinks.length; i++)
	{
		if (postLinks[i].className == "postlink")
		{
			postLinks[i].target = "_blank";
		}
	}
}
function setUpPage()
{
	setElinks();				// Set the spans.
	setTargetinPostLinks();		// Set the links inside the posts so they open in a new window.
}
setUpPage();
