//**************************************************************************************************
//SUBMIT SEARCH - Submit the search when the user uses the Enter button or clicks Go
//**************************************************************************************************

function SubmitSearchByClick(){
	parent.location = "/Search/default.asp?" + escape(document.frmSearch.Keywords.value);
	}
	
function SubmitSearchByEnter(event){
	if(event.keyCode == 13){
		frmSearch.action = "/Search/default.asp?" + escape(document.frmSearch.Keywords.value);
		document.frmSearch.submit();
		}
	}