<!--
function externalLinks()
{
	if (!document.getElementsByTagName) return; 
	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.target = "_blank";
		}
 } 
}

function ValidateSearch(searchElement)
{
	var searchTerm = document.getElementById(searchElement).value;

	if (searchTerm == 'Search...' || searchTerm.length == 0)
	{
		alert("Please enter a search term");
		return false;
	}
	else
	{
		return true;
	}
}

var min = 0.7;
var max = 0.9;
function increaseFontSize()
{
	var p = document.getElementsByTagName('body');
	for(i = 0; i < p.length; i++)
	{
		if(p[i].style.fontSize)
		{
			var s = parseFloat(p[i].style.fontSize.replace("em", ""));
		}
		else
		{
			var s = 0.8;
		}
		if(s != max)
		{
			s += 0.1;
		}
		p[i].style.fontSize = s + "em";
	}
}

function decreaseFontSize()
{
	var p = document.getElementsByTagName('body');
	for(i = 0; i < p.length; i++)
	{
		if(p[i].style.fontSize)
		{
			var s = parseFloat(p[i].style.fontSize.replace("em",""));
		}
		else
		{
			var s = 0.8;
		}
		if(s != min)
		{
			s -= 0.1;
		}
		p[i].style.fontSize = s + "em";
	}
}
window.onload = externalLinks;
-->