function OnSearchFormSubmit() {
	var rdoBlog =  _proxy_jslib_handle(document, 'getElementById', '', 1, 0)('blog');
	var sForm =  _proxy_jslib_handle(document, 'getElementById', '', 1, 0)('searchform');
	var sText =  _proxy_jslib_handle(document, 'getElementById', '', 1, 0)('s');
	if(rdoBlog != null && sForm != null && sText != null)
	{
		if(rdoBlog.checked)
		{
			 _proxy_jslib_assign('', sForm, 'action', '=', ( '/'));
			sText.name = 's';
		}
	}
}