function pickNote(formid,noteid,notevalue){
	document.getElementById(noteid).value = notevalue;
	document.getElementById(formid).submit();
	return false;
}