function showHide(tag,id)
{
	obj = document.getElementsByTagName(tag);
	if (obj[id].style.display == "")
	{
		if (tag == 'table')
		{
			type = "table";
		}
		else
		{
			type = "block";
		}
		obj[id].style.display = type;
	}
	else
	{
		obj[id].style.display = '';
	}
}

function showLogin()
{
	if (document.getElementById('auth'))
	{
		if (document.getElementById('auth').style.display == '')
		{
			document.getElementById('auth').style.display = 'block';
			document.getElementById('txtUsername').focus();
		}
		else
		{
			document.getElementById('auth').style.display = '';
		}
	}

	return false;
}

function helpme(s)
{
	var popup = window.open(s, 'Hjálp', 'toolbar=no,location=no,directories=no,status=no,scrollbars=2,menubar=no,titlebar=no,width=400,height=400');
	popup.focus();
	return false;
}
