	function ExecuteAction(sAction) {
		window.document.frmMain.action.value = sAction;
		window.document.frmMain.submit();
	}


	function SetSelected(oList, sValue) {
		for (var i = 0; i < oList.length - 1; i++) {
			if (oList.options[i].value == sValue) {
				oList.options[i].selected = true;
			}
		}
	}
	
