﻿ function googleSearch()
        {
            if (document.getElementById("txtgoogle").value!="")
            {    
                window.open("http://www.google.com/search?hl=en&q=" + document.getElementById("txtgoogle").value);        
            }
            else
            {
                alert("El campo de búsqueda no puede estar en blanco");
                document.getElementById("btnGoogle").focus();
            }
        }
        
        
  function onEnter() 
  {
  
  if (window.event.keyCode == 13) 
    {
     googleSearch(); 
    }
  }
  
  function disableEnterKey(e)
{
     var key;

     if(window.event)
          key = window.event.keyCode;     //IE
     else
          key = e.which;     //firefox

     if(key == 13)
          if (document.getElementById("txtgoogle").value!="")
            {    
                window.open("http://www.google.com/search?hl=en&q=" + document.getElementById("txtgoogle").value);        
            }
            else
            {
                alert("El campo de búsqueda no puede estar en blanco");
                document.getElementById("btnGoogle").focus();
            }
     
}