

	function cercaBorsa()
	{
		descripcio = $('cerca_borsa').value;
		frm = $('frmBorsaSearch');
		/* frm.method = "post";
		frm.action = "/productes/cerca/" + descripcio;
		frm.submit();
		*/
		document.location.href = "/borsatreball/index/cerca/" + descripcio;
	}
	
	function entborsaSearch(event,ourform)
	{
	  if ((event && event.which == 13) || (event && event.keyCode == 13))
	  {
		cercaBorsa();
		return true;
	  }
	  else
		return true;
	}
	
