﻿function followInnerHyperLink(e) {
    if (this.firstChild.href)
        window.location = this.firstChild.href;
   
    if (!e)
        var e = window.event;

    e.cancelBubble = true;

    if (e.stopPropagation)
        e.stopPropagation();
}

function submitSearchQuery(cssClass) {
    window.location = "searchresults3.aspx?ds=true&ts=" + $(cssClass).val();
}

function submitOnEnter(e)
{
var keynum;
var keychar;
var numcheck;if(window.event) // IE
  {
  keynum = e.keyCode;
  }
else if(e.which) // Netscape/Firefox/Opera
  {
  keynum = e.which;
  }
  if (keynum == 13) {
      window.location = "searchresults3.aspx?ds=true&ts=" + $(".searchBox").val();
      return false;
  }
return;
}
