
function setAction(theForm) {
	theForm.action = "template.asp?intPageId=128&search=true&searchString=" + theForm.searchString.value;
}


function submitForm(theForm) {
	if ( window.event.keyCode == 13 ) {
		setAction(theForm);
		theForm.submit();
	}
}
