﻿//搜索栏的自定义下拉表
var MODL=false;//Mouse Over DropDown List

function drop_down()
{
    if(document.getElementById("search_drop").style.display=="block")
        document.getElementById("search_drop").style.display="none";
    else
    {
        document.getElementById("search_drop").style.display="block";
        //alert(document.getElementById("txbSelect").style.pixelLeft+"|"+document.getElementById("txbSelect").offsetLeft);
    }
}

function Select_Blur()
{
    if(MODL!=true)
        document.getElementById("search_drop").style.display="none";
}

function Drop_Focus()
{
    MODL=true;
}

function Drop_Blur()
{
    MODL=false;
}

function Blank_Click()
{
    document.getElementById("search_drop").style.display="none";
}

function Select_Changed(txt,value)
{
    document.getElementById("txbSelect").value=txt;
    document.getElementById("CategoryPath").value=value;
    
}