function StartingSpecialCharCheck(str)
{
//nstart="@#$%^*()=-[]\\;{}|:<>_\?! "	
nstart=" "	
var sflag=0

if((nstart.indexOf(str.charAt(0)))!=-1)
sflag=1

return sflag

}
function checkresults()
{
	var searchkey=document.custom_search.q.value;
//	alert("test");
	//document.form.searchword.focus();
	if( (searchkey=="") || (searchkey=="SEARCH") )
	{
		alert("Please enter keyword to search");
		return false;
	}
	if(searchkey!="")
	{
	var flag=StartingSpecialCharCheck(searchkey);
	if(flag==1)
	{
	alert("Keyword should start with an alphabet");
	document.custom_search.q.focus();
	return false;
	}
	}
	document.custom_search.q.focus();
	
	
}


