function submitDictionary()
{
	
	var searchval=document.getElementById('search').value;
	var ch = searchval.charAt(0);
  	if((ch >= "A" && ch <= "Z") || (ch >= "a" && ch <= "z"))
		document.getElementById('rtype').value='eng';
	else
		document.getElementById('rtype').value='hindi';
	document.frm.submit();
}
var table ='<table align="center"   cellpadding="0" cellspacing="0" style="padding-top:2px" border="0">'; 
table = table+'<form name="frm" id="frm" method="get" action="' + resResult + '" onSubmit="submitDictionary();">';
table = table+'<tr><td style="vertical-align:top"><input type="hidden" name="do" id="do" value="dictionary">';
table = table+'<a href="http://www.pelagiandictionary.com/"><img src="http://qa.pelagiandictionary.com/images/dictionary.jpg" border="0"></a></td><td><input type="text" name="search" id="search" style="width:150px"></td><td>';
table = table+'<img src="http://qa.pelagiandictionary.com/images/search.jpg" onClick="submitDictionary();">';
table = table+'<input type="hidden" name="rtype" id="rtype" value="">';
table = table+'</td></tr></form></table>';
document.write(table);

