	
	<!--//--><![CDATA[//><!--

	startList = function() {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("ulNavigation");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
	window.onload=startList;

	//--><!]]>
	
	var bOpenbestelling = false
	
	function CheckOpenBestelling(url)
	{
		//alert(iframeWebshop.document.all.frame5.document.all)
		//frame5.document.frmBestel=="[object]"
		if(bOpenbestelling)
		{
			if(confirm("U bent bezig met het samenstellen van een bestelling. Indien u naar een andere pagina (op deze website) navigeert,\nverliest u de door u samengestelde gegevens!\n\nWilt u toch doorgaan?"))
			{
				location.href = url
			}
		} else
		{
			location.href = url
		}
	}
	
	function ShowAlert()
	{
		bOpenbestelling = true
	}