﻿
//window.alert=function(str) 
//  { 
//  execScript('MsgBox  "'+str+'",0,"new"','VBScript'); 
//  } 
//  alert("hello");  
  
function isNull(obj)
{
    var control = document.getElementById(obj);
    
    if(control.value == "" || control.value == "Search here")
    {
        alert("please input keyword");
        return false;
    }
    else
    {
        return true;
    }
}
function clearText(obj)
{
    obj.value = "";
}

