﻿// JScript File
function setSearchType(obj)
{
    var objname;
    var currentUrl = document.URLUnencoded;
    
    if (currentUrl.indexOf("Home.aspx") > 0)
    {
        document.getElementById("ctl00_topBannerHome_txtSearchType").value=obj
    }
    else
    {
        ////document.getElementById("ctl00_topBanner_txtSearchType").value=obj;

        //Uncheck the checkbox if only without word is entered
        var descKeyWord = TrimStringCommon(document.all['ctl00_ContentPlaceHolder_AdvSearchResult_txtKeyword'].value);
        var descExact = TrimStringCommon(document.all['ctl00_ContentPlaceHolder_AdvSearchResult_txtExact'].value);

        if (descKeyWord == "" && descExact== "")
        {
	        document.getElementById("ctl00_ContentPlaceHolder_AdvSearchResult_chkInDoc").checked=false;
        }
    }
   
}

function OnClick_ImgButton()
{
    var objname;
    if(document.all["ctl00_ContentPlaceHolder_SpotLight1_txtKeywords"]==null)
    {
        objname ="ctl00_ContentPlaceHolder_SpotLight1_txtKeywords";
    }
    else
    {
        objname ="ctl00_ContentPlaceHolder_SpotLight1_txtKeywords";
    }
    
    if (document.getElementById(objname).value=='ADV')
    {
    //do nothing
    }
    else
    {
    document.getElementById(objname).value='SIMPLE';
    }
   
}

function OnEnter_SimpleSearch()
{
	if (event.keyCode > 0 && event.keyCode == 13)
	{
    var objname;
    if(document.all["ctl00_ContentPlaceHolder_SpotLight1_txtKeywords"]==null)
    {
        objname ="ctl00_ContentPlaceHolder_SpotLight1_txtKeywords";
    }
    else
    {
    objname ="ctl00_ContentPlaceHolder_SpotLight1_txtKeywords";
    }
    document.getElementById(objname).value='SIMPLE';
    }
}

function LostFocus() 
{
    var objname;
    if(document.all["ctl00_ContentPlaceHolder_SpotLight1_txtKeywords"]==null)
    {
        objname ="ctl00_ContentPlaceHolder_SpotLight1_txtKeywords";
    }
    else
    {
        objname ="ctl00_ContentPlaceHolder_SpotLight1_txtKeywords";
    }

   
    var desc = TrimStringCommon(document.all[objname].value);
    if (desc == "")
    {
	    document.all[objname].value ="- Enter Keyword -";
    }
}

function GotFocus()
{

    var objname;
    if(document.all["ctl00_ContentPlaceHolder_SpotLight1_txtKeywords"]==null)
    {
        objname ="ctl00_ContentPlaceHolder_SpotLight1_txtKeywords";
    }
    else
    {
        objname ="ctl00_ContentPlaceHolder_SpotLight1_txtKeywords";
        
    }

	if (document.all[objname].value =="- Enter Keyword -")
	{
		document.all[objname].value ="";
		return false;
	}
}

