﻿ function TipEnVen (pageid) {

url = encodeURIComponent(window.location.toString());

pagetitle = encodeURIComponent(window.document.title); 

headertext = encodeURIComponent("Et tip: ")+encodeURIComponent(window.document.title);

window.open ("/page16.aspx?urlsideid="+pageid+"&urllink="+url+"&urlsidetitel="+pagetitle+"&urloverskrift="+headertext, 'tipafriend', "dependent=yes,width=486,height=490,scrollbars=no,resizable=no");

}

function MoveNavigation()
{
	var sourceElm = document.getElementById("mergefield_navigation_level2");
	if(!sourceElm || !sourceElm.childNodes[0]) return;
	var targetElm = document.getElementById("nav2Container");
	if(!targetElm) return;

	targetElm.appendChild(sourceElm);
	sourceElm.style.visiblity = "visible";
	sourceElm.style.display = "block";
	sourceElm.childNodes[0].style.visibility = "visible";
}
Tangora.Events.AddHandler(window,"onload",MoveNavigation);