<!--Kent Lundström WSS Byxelkroken Copyright 2005-->
 function Noshit()
	{
	for (a in document.links) document.links[a].onfocus = document.links[a].blur;
	}
	if (document.all)
	{
	document.onmousedown = Noshit;
	}
	else if (document.layer)
	{
	document.onmousedown = Noshit;
	}
	
	function meny( nr )
	{
		if ( eval( 'niva' + nr + '.style.display' ) == 'none' )
		{
			eval( 'niva' + nr + '.style.display = "block" ' );
		}
		else
		{
			eval( 'niva' + nr + '.style.display = "none" ' );
		}
	} 
	
	function off(normal)
	{
		
		normal.style.color ='navy';
	 	normal.style.fontWeight = "bolder";
	}
	
	
	function on(hov)
	{
		
		hov.style.color ='#cc0033';
		hov.style.fontWeight = "bolder";
	}
	
	function datum()
{
	var aren = new Date();
	var ar = aren.getFullYear();
	var man = aren.getMonth() + 1;
	var dag = aren.getDate();
	
	document.tidig.artal.value = ar;
	document.tidig.manaden.value = man;
	document.tidig.dagen.value = dag; 
}