window.onload = OnLoad;

function OnLoad()
{
	if (document.getElementById)
	{
		aLinks = document.getElementsByTagName("a");
		for (aIndex = 0; aIndex < aLinks.length; aIndex++)
		{
			if (aLinks[aIndex].href.indexOf('http://www.lektoren.ch/') == -1 && aLinks[aIndex].href.indexOf('http://lektoren.ch/') == -1)
			{
				aLinks[aIndex].target = '_blank';
			}
		}

	}	
}

