// JavaScript Document
function sub_frm() {
var sel = "no"
var max = document.frm1.flammable.length;
for (var idx = 0; idx < max; idx++) {
if (eval("document.frm1.flammable[" + idx + "].checked") == true) {
sel = "yes"
document.frm1.submit();

   }
}
      if(sel == "no"){
   itm.innerHTML = "<span class='style21'>** No Item Selected</span>"
itm1.innerHTML = "<span class='style21'>** No Item Selected</span>"
}
}