function goNext(where){
	if (event.keyCode == "13")
		where.focus();
}

function preSubmit(func){
	if (event.keyCode == "13")
		eval(func);
}