function  boxfan(){
 if(document.myfrom.mybox7.checked==true)
     {
       window.document.getElementById("boxfan_num").disabled=false;
       var a12 = window.document.getElementById("boxfan_a12").value;
       var total = 12 * a12;
       window.document.getElementById("boxfan_total").value = total;
    }
  else
      {
       window.document.getElementById("boxfan_num").disabled=true;
       window.document.getElementById("boxfan_total").value = 0;
 }
}
