﻿var txtSearch = "搜索书名、作者、出版社、ISBN、丛书";
function txtFocus(input)
{
	if(input.value == txtSearch)
	{
		input.value="";
	}
}
function txtBlur(input)
{
	if(input.value=="")
	{
		input.value = txtSearch;
	}
}
function CheckNull()
{
    if(document.getElementById("ctl00$txtKey").value=="" || document.getElementById("ctl00$txtKey").value==txtSearch)
    {
        alert("请输入您要搜索的关键字...");
        document.getElementById("ctl00$txtKey").focus();
        return false;
    }
    else
    {
        return true;
    }
}
