﻿// JScript File

   //Provides functions for clearing or restoring the default phrase of "Put search phrase here"
   
   //The default phrase that appears in the search box   
   var sPhrase = "Enter your search terms";
    
   function SearchBoxFocus()
   {
       
        var txtSearch = document.getElementById("q");
        if (txtSearch != null && txtSearch.value == sPhrase)
        {
            txtSearch.value = "";
        }
          
   }
   
   function SearchBoxLoseFocus()
   {
     
        var txtSearch = document.getElementById("q");
        if (txtSearch != null && txtSearch.value == "")
        {
            txtSearch.value = sPhrase;
        }          
   
   }




