﻿$(document).ready(function ()
{
    $("#btnSearch").click(function ()
    {
        window.location.href = "../exhibitor/exhibitor_database.aspx?col=" + $("#sltCols").val() + "&key=" + $("#txtKey").val();
    });
    $("#btnSearch_Google").click(function ()
    {
        if ($("#txtSearch_Google").val() != "")
        {
            window.location.href = "../home/search.aspx?key=" + $("#txtSearch_Google").val();
        }
    });
});

//初始化
function InitScrollRightExhibitor()
{
    $("#right_exhibitor").ScrollBox({
        containerExpr: "#right_exhibitor",
        content1Expr: "#right_exhibitor1",
        content2Expr: "#right_exhibitor2",
        direction: "y",
        speed: 30,
        step: 1
    });
}
///关闭窗口
function closeme()
{
    window.open('', '_parent', '');
    window.close();
}  
