<!--
// Copyright 2004-2006 Crystal Moments Creative Services, LLC
// Unauthorized Duplication Prohibited. All Rights Reserved.
// 
// 

function setIndexByValue(selectBox, optionValue) {
	var i;
	if (optionValue) {
		for(i=0;i<selectBox.options.length;i++) {
			if (selectBox.options[i].value==optionValue) {
				selectBox.selectedIndex=i;
				return true;
			}
		}
	}
}
function setIndexByText(selectBox, optionText) {
	var i;
	if (optionText) {
		for(i=0;i<selectBox.options.length;i++) {
			if (selectBox.options[i].text==optionText) {
				selectBox.selectedIndex=i;
				return true;
			}
		}
	}
}
function clearSelectOptions(selectBox) {
	var i;
	for(i=selectBox.options.length-1;i>=0;i--) {
		selectBox.remove(i);
	}
}

-->
