/*Fix Data being entered into forms */
function fixMI(n){
	n.value=n.value.replace(/[^a-z]/ig, ''); 
	n.value=n.value.toUpperCase();
}

