// JavaScript Document
//Removed 'Enter a keyword' from the textfield 
function searchBox(){
	if (document.searchForm.keywordSearch.value == "Enter a keyword"){
		document.searchForm.keywordSearch.value = ""; 
	}
}

//Removed 'Enter a keyword' from the textfield 
function searchBoxNew(){
	if (document.searchForm.keywordSearchNew.value == "Enter a keyword"){
		document.searchForm.keywordSearchNew.value = ""; 
	}
}

//Detect if the enter key has been pressed.  If so, submit the form.
function enterKeyPress() {
	keyStroke = window.event.keyCode;
	if (keyStroke == '13') {
		document.searchForm.submit();
	}
}
