

	function popup(sPage, sName, iWidth, iHeight, blnScroll, blnResize, blnStatus) {
		window.open(sPage, sName,"top=100,left=100,width="+iWidth+",height="+iHeight+",status="+blnStatus+",scrollbars="+blnScroll+",resizable="+blnResize);
	}
	
	function showOrderSpec(orderId) {
		specElement = document.getElementById('orderspec_'+orderId);
		if (specElement.style.display == 'none') {
			specElement.style.display = '';
			document.getElementById("showButton_"+orderId).value = 'Dölj';
		} else {
			specElement.style.display = 'none';
			document.getElementById("showButton_"+orderId).value = 'Visa';
		}
	}
	
