function SerchGoogle()
{
	if(document.googleform.q.value == '')
	{
		return false;
	}
	else
	{
		document.googleform.submit();
	}
	
}

