function CercaRapida() 
    {
	  var oForm = document.frmSearch; 
	  
	     if (oForm.txtTitle.value == "")
		  {
		    alert('Ha de possar algun text');
		  }
		  else
		  {
           oForm.submit();
	       }
}