// JavaScript Document
function chkKeyword()
{
    if(document.frmKeyword.vchKeyword.value=="" || document.frmKeyword.vchKeyword.value=="Enter Keyword")
    {
    alert( "Please enter Search keyword." );
    document.frmKeyword.vchKeyword.focus();
    return false ;
    }
}