function checkTextElementOnFocus(jkl, eve)
{
    //if(var == document.getElementById('location'))
  if (eve == 'focus')
  {
    if(jkl == 'loc')
    {
     var tbox = document.getElementById('loc');
     var val = tbox.value;
     if(val == 'Enter Location')
     {
     tbox.value = "";       
     }
    }
    else if (jkl == 'keyword')
    {
    //    document.searchForm.keyword.value = "";   
        var tbox = document.getElementById('keyword');
        var val = tbox.value;
        if(val == 'Enter Institute or Course Name')
        {
             tbox.value = "";       
        }

   //     tbox.value = "Enter Location";       
    }
  }
 else if (eve == 'blur')
 {
    if(jkl == 'loc')
    {
            var tbox = document.getElementById('loc');
            var val = tbox.value;
        if (val == '')
        {
            tbox.value = "Enter Location";  
        }
    }
    else if (jkl == 'keyword')
    {
            var tbox = document.getElementById('keyword');
            var val = tbox.value;
            if(val == '')
            {
                    tbox.value = "Enter Institute or Course Name";       
            }
    }
 }
}
function check()
{
  var tbox = document.getElementById('keyword');
  var val = tbox.value;
  if(val == 'Enter Institute or Course Name')
  {
    tbox.value = "";
  }

  var lbox = document.getElementById('loc');
  var val = lbox.value;
    if(val == 'Enter Location')
    {
        lbox.value = "";
    } 
/* var tbox = document.getElementById('keyword');
 var val = tbox.value;
 if(val == 'Enter Institute or Course Name')
 {
 tbox.value = "";       
 } */
}


