function kollege(name, height)
{
	w = window.open('popup.php?page=' + name, 'kollegenPopup', 'width=400, height=' + height + ', scrolling=no');
	w.focus();
}

function imp_kont(name, height)
{
	w = window.open('popup.php?page=' + name, 'kollegenPopup', 'width=400, height=' + height + ', scrolling=no');
	w.focus();
}

function blur_links()
{
	lnks = document.getElementsByTagName('a');

	for (i = 0; i < lnks.length; i++)
	{
		lnks[i].onfocus = new Function("this.blur()");
	}

	lnks = document.getElementsByTagName('area');

	for (i = 0; i < lnks.length; i++)
	{
		lnks[i].onfocus = new Function("this.blur()");
	}
}

function input_highlight(obj)
{
	obj.style.backgroundColor = '#d3f2f1';
	obj.onblur = new Function("this.style.backgroundColor='white'");
}