//prevent typing in  field
function trimWhiteSpace(field) {
	str = field.replace(/[" "]/g, '');
	return str;
}

