
// ******************************************
// * Search *
// ******************************************

function searchSubmit(textBoxID) {
  document.forms[0].onsubmit = CancelSubmit;
  document.location.href = "/Indhold/Soegeside.aspx?query=" + document.getElementById(textBoxID).value;
}

function searchEnterSubmit(e, textBoxID) {
   if (!e) var e = window.event
   // handle event
   e.cancelBubble = true;
   if (e.stopPropagation) e.stopPropagation();

   if (e.keyCode) code = e.keyCode;
   else if (e.which) code = e.which;

   if (code == 13)
   {
     document.forms[0].onsubmit = CancelSubmit;
     document.location.href = "/Indhold/Soegeside.aspx?query=" + document.getElementById(textBoxID).value;
   }
}

function CancelSubmit()
{
   document.forms[0].onsubmit = null;
   return false;
}


