function mySearch(sText,sBaseUrl,sBasePath)
{
  if(sText == '') { return false; }
  if(sBaseUrl == '') { sBaseUrl='/'; }
  if(sBasePath == '') { sBasePath='cerca/q/'; }
  
  var temp = sText.toLowerCase();
  var searchText = temp.replace(/ /gi, "-");
  
  var newLocation = sBaseUrl + sBasePath + searchText;
  window.location = newLocation;
  
  return false;
}
