function externalLinks()
{
	if (!document.getElementsByTagName)
		return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i < anchors.length; i++)
	{
		var ankare = anchors[i];
		if (ankare.getAttribute("href") && ankare.getAttribute("rel") == "external")
			ankare.target = "_blank";
	}
}

function hide(id)
{
	document.getElementById(id).style.display = 'none';
}

function show(id)
{
	document.getElementById(id).style.display = '';
}