function siteSearch()
{
//alert("rohan     s="+document.form1.s.value);
//window.document.location="ss.html";
//document.form1.submit();
if (document.form1.s !=null && document.form1.s.value != null && document.form1.s.value != "")
{
//	alert("document.form1.s.value is not null");
	window.location.href="site_search.htm?s="+document.form1.s.value;
	return ;
}
else
{
//	alert("document.form1.s.value is NULL");
	return false;
}
//return false;
}

