var keywordArray = new Array(
  /* Enter ALL keywords in lower case */
  new Array("epilepsy"), "http://www.mayoclinic.org/epilepsy-old/index.html", 
  new Array("rhinitis"), "http://www.mayoclinic.org/rhinitis/index.html", 
  new Array("infertility"), "http://www.mayoclinic.org/infertility/index.html", 
  new Array("marfan syndrome"), "http://www.mayoclinic.org/marfan/index.html", 
  new Array("salivary gland tumors","parotid gland tumor","submandibular gland tumor","sublingual gland tumor"), "http://www.mayoclinic.org/salivaryglandtumors/index.html", 
  new Array("bladder cancer","cancer of the bladder"), "http://www.mayoclinic.org/bladdercancer-old/index.html", 
  new Array("ganglion cysts"), "http://www.mayoclinic.org/ganglioncysts/index.html", 
  new Array("kidney cancer","renal cell cancer","cancer of the kidney"), "http://www.mayoclinic.org/kidneycancer/index.html", 
  new Array("throat cancer","cancer of the throat"), "http://www.mayoclinic.org/throatcancer/index.html", 
  new Array("shingles","herpes zoster"), "http://www.mayoclinic.org/shingles/index.html", 
  new Array("back pain","back pains","back problem","back problems"), "http://www.mayoclinic.org/backpain/index.html", 
  new Array("hernias","hernia"), "http://www.mayoclinic.org/hernia/index.html", 
  new Array("thyroid disease","thyroid diseases","thyroid","thyroid problems"), "http://www.mayoclinic.org/thyroid/index.html", 
  new Array("prostate problems","prostate","prostate problem"), "http://www.mayoclinic.org/prostate/index.html", 
  new Array("waldenstrom's macroglobulinemia","macroglobulinemia","waldenstroms"), "http://www.mayoclinic.org/waldenstroms/index.html", 
  new Array("cardiomyopathy"), "http://www.mayoclinic.org/cardiomyopathy/index.html", 
  new Array("congestive heart failure"), "http://www.mayoclinic.org/congestiveheartfailure/index.html", 
  /*  KEEP THIS ENTRY LAST - DO NOT OVERWRITE */
  new Array("abc","def"), "http://www.mayoclinic.org/patientinfo/index.html"
);

var defaultURL = "/patientinfo/notfound.html";
var emailURL = "https://forms.mayoforms.org/forms/up/mc00000.cfm?term=";

function searchKeywords(user_keyword) {
  if (user_keyword.length > 0) {
    var searchstr = user_keyword.toLowerCase();
    var targetURL = "";
    for (var i=0; i < keywordArray.length; i=i+2) {
      for (var j=0; j < keywordArray[i].length; j++) {
        if (searchstr == keywordArray[i][j]) {
          targetURL = keywordArray[i+1];
        }
      }
    }
    if (targetURL.length > 0) {
      window.location = targetURL;
    } else {
      window.open(emailURL + user_keyword,"","status=yes, width=400,height=400"); 
      /*  Send an e-mail for the keyword that was searched and then take the user
          to the default URL */
      window.location = defaultURL;
    }
  }
}
 /* created: 12/02/2005 12:57 AM */ 

