﻿function doSearch()
{
	if(arguments.length == 0)
	{
		if(document.getElementById('queryTerms').value!='')
		{
			doSearch(document.getElementById('queryTerms').value);
		}
	}
	else
	{
		location.href='/sitesearch/?hl=pt&lr=lang_pt&nq=site%3awww.pandasecurity.com%2fportugal%2f&term='+arguments[0].replace(" ","+");
	}
}

document.getElementById('searchButton').value = "Procurar";
