<!--
function Filter(Option,Obj1,Obj2){
	switch(Option){
		case 'Product':
			Obj2.options[Obj2.selectedIndex].value = "";
		break;
		case 'Manufacturer':
			Obj2.options[Obj2.selectedIndex].value = "";
		break;
	}
	document.forms[0].submit();
}
//-->
