﻿// JScript 文件

var $=document.getElementById;

function checkKey()
{
    if($("Search1_txtKey").value == "")
    {
        alert("请输入关键字");
        $("Search1_txtKey").focus();
        return false;
    }
    return true;
}


function searchSubmit()
{
    $("Search1_btnSearch").click();
}