           function fillSmallQuickFinderL1(CatId)
           {
              if(CatId=="0")
                  CatId = document.getElementById("CategoryId").value;
              if (CatId != "-1"){    
                document.getElementById("homePageSmallFinderL1").innerHTML = Abacus_Store.QuickFind_ajax.getQuickFinderL1_HomePageSmall(CatId).value;
              }
              else if (CatId == "-1"){
              	//$('#QuickSmallFindSelect1').attr("disabled", "disabled");
              	$('#QuickSmallFindSelect1').addClass("deselected");
                $('#QuickSmallFindSelect1').val("-1");
            }
				
        $('#QuickSmallFindSelect2').addClass("deselected");
                $('#QuickSmallFindSelect2').val("-1");
                //$('#QuickSmallFindSelect3').attr("disabled", "disabled");
                $('#QuickSmallFindSelect3').addClass("deselected");
                $('#QuickSmallFindSelect3').val("-1");
            }

            function fillSmallQuickFinderL2(id)
            {
            	if (id != "-1")	{
	                document.getElementById("homePageSmallFinderL2").innerHTML = Abacus_Store.QuickFind_ajax.getQuickFinderL2_HomePageSmall(id).value;
					fillSmallQuickFinderL3("0",id);
                }
                else if (id == "-1"){
                	//$('#QuickSmallFindSelect2').attr("disabled", "disabled");
                	$('#QuickSmallFindSelect2').addClass("deselected");
	                $('#QuickSmallFindSelect2').val("-1");
                }
            }
            
            function fillSmallQuickFinderL3(id,L1Id)
            {
            	if (id != "-1"){
            		document.getElementById("level2ID").value = L1Id;
                	document.getElementById("homePageSmallFinderL3").innerHTML = Abacus_Store.QuickFind_ajax.getQuickFinderL3_HomePageSmall(id,L1Id,"1").value;
                }
                else if (id == "-1"){
	                //$('#QuickSmallFindSelect3').attr("disabled", "disabled");
	                $('#QuickSmallFindSelect3').addClass("deselected");
	                $('#QuickSmallFindSelect3').val("-1");                	
                }
            }
            
            function goToCompat(compatId)
            {
            	document.location.href = "compatibility.aspx?compat=" + compatId;
            }

      			$('#SmallQuickFindSelect, option').bind("focus", function() {
      				$('#SmallQuickFindSelect').show();
      			});
