function Configure_Submit(tablename,domainId,keywordId)
{ 

  alert('inside configure '+tablename + domainId + " "+ keywordId);

  if(tablename.length == 0)
    {
      document.getElementById("Configure_MessagePanel").innerHTML='Please enter the table name' 
    }
  else
    { 
      //var url="CensusServlet?req=921"+"&tablename=" +tablename+"&urlid="+domainId+"&keywordid="+keywordId;
      //xmlHttp=GetXmlHttpObject(stateChanged);
      //xmlHttp.open("GET", url , true);
      //xmlHttp.send(null);
      location.href = "CensusServlet?req=921"+"&tablename=" +tablename+"&urlid="+domainId+"&keywordid="+keywordId;
   }
}

  function Configure_Change(tablename,domainId,keywordId)
  {
    if(confirm("This will drop the existing table. Are you sure you want to continue ?"))
      {
      }
  }

function handleSearch(form)
{

  if(form.keyword.value.length == 0)
    {
      alert("Please enter a number");
    }
  else 
    {
      if(isNaN(form.keyword.value))
	{
	  alert("Please enter a valid number")
	    } 
      else
	{
	  form.submit();
	}
    }
}


function searchHandle(form)
{
  alert("inside function");
  alert(form.T_HH.value);

}


function matchAny(form)
{
  form.req.value = 924;
   	
  
  form.submit();
}
    
