function HL(element, velement, helement, on, tekst) 
{
	if (on==0)
	{ 
		farve = "#A2C0DD";
		vfarve = "#A2C0DDC";
		hfarve = "white";
		
		b = "1px solid black"
		vb = "1px solid #EDDC7C"
		hb = "1px solid white"

		tekst = "--::Ugemadplan::--";
		cursortype = '';
		textfarve = "black";
	} else { 
		farve = "#A2C0DD";
		vfarve = "#A2C0DD";
		hfarve = "#A2C0DD";
		
		b = "1px solid #006699"
		vb = "1px solid black"		
		hb = "1px solid black"
	
		cursortype = 'hand';
		textfarve = "white";
	}
	setCursor(element, cursortype);
	element.style.color = textfarve;

	element.style.background = farve;
	velement.style.background = vfarve;
	helement.style.background = hfarve;
	
	element.style.borderLeft = b;
	element.style.borderRight = b;
	velement.style.borderLeft = vb;
	velement.style.borderBottom = vb;
	helement.style.borderRight = hb;
	helement.style.borderBottom = hb;
	
	vistekst(tekst);
	return true;
}

function setCursor(element,c)
{
	element.style.cursor = "hand"
}

function openUrl(u)
{
	window.location = u;
	return true;
}

function vistekst(tekst){
	window.status = tekst;
	return true;
}
