function open_xmas()
{
	loc = 'xmas/tilbud.htm';
	myWin = window.open(loc, "displayWindow2","width=623,height=460,resizeable=auto,status=no,toolbar=no,menubar=no,scrollbars=0");
	myWin.focus();
}



/* FAQ */

function outliner()
{
    var child = document.all[event.srcElement.getAttribute("child",false)];
    if (null != child){
		if(child.className == "collapsed")
		{
			child.className = "expanded";
			return;
		}
		if(child.className == "expanded")
		{
			child.className = "collapsed";
			return;
		}
    }
}