	function newWindow(theUrl) {
		theWindow = window.open(theUrl,'theWin', 'width=503,height=480,scrollbars,resizable')
	}
	
	function toggleOrderBox(){
		document.getElementById('trOrderBoxContent').style.display=''; 
		document.getElementById('aOrderBoxExpand').style.display='none';
		document.getElementById('trOrderBoxContentAlt').style.display='none'
	}
	
	function writeEntityState(){
		var e = document.getElementById('selFQEntityType_selLookup').selectedIndex;
		var s = document.getElementById('selFQState_selLookup').selectedIndex;
		var sOut = document.getElementById('selFQState_selLookup').options[s].text + ' ' + document.getElementById('selFQEntityType_selLookup').options[e].text
		document.write(sOut);
	}
