﻿function Show_Tip()
{
    var obj1=document.getElementById("Search1_txtkeyword");
    if(obj1.value=="")
    {
        obj1.value="Input KeyWord";
    }
}
function Hide_Tip()
{
    var obj1=document.getElementById("Search1_txtkeyword");
    obj1.value="";
}