
function SetFilter(){
	var el = document.fmFilterSort.MaxPriceLevel;
	if (el){
	    if (0 == el.selectedIndex){
		    el.options[0].selected=true;
	    }
	    else 	if (6 == el.selectedIndex){
		    el.options[5].selected=true;
		    el.options[0].selected=true;
		    }
		    else{
			    el.options[document.fmFilterSort.MaxPriceLevel.value/100 - 1].selected = true;
		    }
    }
	document.fmFilterSort.submit();
}

function ChangeChecked(oElements, bValue) {
	if (oElements) {
		for (var i = 0; i < oElements.length; i++) {
			oElements[i].checked = bValue;}
		oElements.checked = bValue;
	}
}

function Find() {
    document.fmCart.Action.value="find";
    document.fmCart.submit();
}
function Copy() {
    document.fmCart.Action.value="copy";
    document.fmCart.submit();
}
