Pronounced “brevity”. Definition: “the use of brief expressions”.
HIStalk’s weekly e-mail update contains the five biggest stories in healthcare IT for the week, complete with background and opinion. All you need to know about the industry in five minutes per week. Perfect for executives, travelers, and HIT newcomers. Impress your colleagues with deep industry knowledge!
function CheckMultiple2(frm, name) { for (var i=0; i < frm.length; i++) { fldObj = frm.elements[i]; fldId = fldObj.id; if (fldId) { var fieldnamecheck=fldObj.id.indexOf(name); if (fieldnamecheck != -1) { if (fldObj.checked) { return true; } } } } return false; } function CheckForm2(f) { if (f.email.value == "") { alert("Please enter your email address."); f.email.focus(); return false; }
var fname = "CustomFields_1_2"; var fld = document.getElementById(fname); if (fld.value == "") { alert("Please enter a value for field Name"); fld.focus(); return false; }
var fname = "CustomFields_4_2"; var fld = document.getElementById(fname); if (fld.value == "") { alert("Please enter a value for field Employer Name"); fld.focus(); return false; }
return true; };


