function hideShowHaboPopup(id)
{
	if (document.getElementById) // DOM3 = IE5, NS6
	{
		//if(document.getElementById(id).style.display == '')
			//document.getElementById(id).style.display = 'none';
		//else
		//{
			document.getElementById(id).style.display = '';
		//}
	}
	else
	{
		if (document.layers) // Netscape 4
		{
			//if(document.id.display == '')
				document.id.display = 'none';
			//else
				document.id.display = '';
		}
		else
		{ // IE 4
			//if(document.all.id.style.display == '')
				//document.all.id.style.display = 'none';
			//else
				document.all.id.style.display = '';
		}
	}
}

function popUrl(url) {
		if (document.all || document.layers) {
			var w = screen.availWidth;
			var h = screen.availHeight;
		}
		
		var popW = 310, popH = 500;
		var leftPos = (w-popW)/2, topPos = (h-popH)/2;
		
		var winpop = window.open(url,'_blank','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + 'status=yes,scrollbars=yes,resizable=yes,location=no,toolbar=no,directories=no,menubar=no');
		winpop.focus();

	}
		function popUrlpresentkort(url) {
		if (document.all || document.layers) {
			var w = screen.availWidth;
			var h = screen.availHeight;
		}
		
		var popW = 800, popH = 440;
		var leftPos = (w-popW)/2, topPos = (h-popH)/2;
		
		var winpop = window.open(url,'_blank','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + 'status=yes,scrollbars=yes,resizable=no,location=yes,toolbar=no,directories=no,menubar=no');
		winpop.focus();

	}
	
	function popUrlReg(url) {
		if (document.all || document.layers) {
			var w = screen.availWidth;
			var h = screen.availHeight;
		}
		
		var popW = 500, popH = 700;
		var leftPos = (w-popW)/2, topPos = (h-popH)/2;
		
		var winpop = window.open(url,'_blank','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + 'status=yes,scrollbars=no,resizable=no,location=no,toolbar=no,directories=no,menubar=no');
		winpop.focus();

	}
	
	function popUrlAvreg(url) {
		if (document.all || document.layers) {
			var w = screen.availWidth;
			var h = screen.availHeight;
		}
		
		var popW = 500, popH = 700;
		var leftPos = (w-popW)/2, topPos = (h-popH)/2;
		
		var winpop = window.open(url,'_blank','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + 'status=yes,scrollbars=no,resizable=no,location=no,toolbar=no,directories=no,menubar=no');
		winpop.focus();

	}

		
	function menuSelect(id) {
	    for (var i = 1; i <= 5; i++) {
			var valueOnOff = 'off';
			if (id == i)
				valueOnOff = 'on';
			eval('document.getElementById(\'section_' + i + '\').src=\'image/menu_section_' + i + '_' + valueOnOff + '.gif\'');
		}
	}
	
	function infoSelect(id) {
	    for (var i = 1; i <= 6; i++) {
			var valueOnOff = '';
			if (id == i)
				valueOnOff = '_on';

			//eval('document.getElementById(\'info_' + i + '\').src=\'image/menu_info_' + i + valueOnOff + '.gif\'');
		}
	}
	
	function showCokieInfo() {
		var win = window.open('cookies.htm', 'cookieInfo', 'location=no,  menubar=nu, status=no, scrollbars=nu, height=500, width=400, resizable=yes');
		win.focus();
	}
	
	function gotoStartpage() {
		parent.mainFrame.location.href = 'search.aspx?SectionId=0';
	}

