/* create a function to search for medical information using google and display the information inside inner.html */
function search() {
  var search = document.getElementById('search').value;
  var url = "https://www.google.com/search?q=" + search;
  var win = window.open(url, '_blank');
  win.focus();
}