$(function () {
	$("input[id=txtSearchBox]").focus(function() {
		this.select();
	});
	
	$("input[id=txtSearchBox]").keypress(testKeyAndDoSearch);
	
	$("input[id=txtSearchBoxInPage]").keypress(testKeyAndDoSearch);
});

function testKeyAndDoSearch(event)
{
	if (event.which == 13) {
		event.preventDefault();
		doSearchWithText($(this).val());
	}
}

function doSearch(searchBoxId) {
	var searchText = $("input[id=" + searchBoxId + "]").val();
	doSearchWithText(searchText);
}

function doSearchWithText(searchText) {
	var scopeLocal = "C_" + country;
	var scopeGlobal = "L_" + lang;
	var url = redirectUrl + "searchresults.aspx?q=" + escape(searchText) + "&sl=" + scopeLocal + "&sg=" + scopeGlobal;
	window.location.href = url;
}

