﻿//This code makes it possible to hit the enter key in the search box in both IE and Firefox
function onSearchReturn(e, txt) {

	if (!e) var e = window.event
	if (e.keyCode) code = e.keyCode;
	else if (e.which) code = e.which;


	if (code == 13) {
		if (window.event) { //IE
			e.returnValue = false;
			e.cancel = true;

		}
		else {
			e.preventDefault();

		}

		if (txt != '') {
		    window.document.location = "http://www.beyondtrust.com/includes/search/results.aspx?q=" + txt;

		}

	}
}
	