
function commonSearch (form)
{
    var text = form.searchText.value;
    var st = form.searchType.value;

    if (st == 'Forumz')
    {

		if (window.aBxConfig)
	        document.location = aBxConfig['urlRoot'] + 'forumz/#action=goto&search_result=1&' + text + '&tlts&0&&topics';
		else
		{
	        document.location = f._base + '#action=goto&search_result=1&' + text + '&tlts&0&&topics';
		}
        return false;
    }
    else
    if (st == 'Google')
    {
        document.location = "http://www.google.com/search?q=site:www.expertzzz.com " + text;
        return false;
    }
    else
    {
        return true;
    }
}
