function form_submit(theform){
  for(i=0;i<theform.query.length;i++){
    if(theform.query[i].checked)
      return true;
  }
  alert('Sorry!请空信息不能发送');
  return false;
}