function submitSearch(){

	var theForm = $('babygoForm');
	//alert(theForm);
	var theAction = $('babygoForm-action');
	//alert(theAction);

	var req = $('babygoForm-req').value;
	//alert(req);

	if(window.encodeURIComponent){
		req = encodeURIComponent(req);
	}else{
		req = escape(req);
	}

//	encodeURI(req);

	req = '?req=' + req;

	theAction.value += req;

	//theForm.submit();

}