function goo() {
	if (document.search.q.value == "")  {
		alert("Enter the text you want to search");
		document.search.q.focus();
		return;
	} else if (document.search.sitesearch[0].checked) {
		document.search.submit();
	} else if (document.search.sitesearch[1].checked) {
		y=document.search.q.value;
		x="http://www.google.com/custom";
		window.open(x,'','width=550,height=400,resizable=yes,scrollbars=yes');
		return;
	}
}
			
// ------------------------ Here Starts Google Search --------------------------------------------------------------------- -->
document.write(''+
'	<center>'+
'		<form name=search method=get action="http://www.google.com/custom">'+
'			<table align=left cellspacing=1 border=0 bgcolor="gainsboro">'+
'				<tr><td><font color="midnightblue" face="verdana, arial" size=1>SEARCH</font></td>'+
'				<td><input type=text name=q size=30 maxlength=255 value=""></td>'+
'				<td><a href="javascript:goo()"><img src="images/go.gif" border="0"></a></td> '+
'				<input type=hidden name=cof value="www.sisikolkata.gov.in">'+
'				<input type=hidden name=domains value="www.sisikolkata.gov.in">'+
'				<td align="center">'+
'				<font color="midnightblue" face=arial size=1>'+
'				<input type=radio name=sitesearch value="">Google Web'+
'				<input type=radio name=sitesearch value="www.sisikolkata.gov.in" checked>Site Search'+
'				</font>'+
'				</td></tr>'+
'			</table>'+
'		</form>'+
'');
// ------------------------ Here Ends Google Search --------------------------------------------------------------------- -->
