영원한사랑

//---------------------------------------------------------------------------------- 라디오 버튼 자동 체크
function auto_radio(this_s,v_value){ //라디오 버튼인지 체크하지는 않습니다.
 var m =this_s.length;
 if(!m){
  this_s.checked = true;
  return;
 }
 for(var i=0;i  if(this_s.value == v_value){
   this_s[i].checked = true;
   return;
  }
 }
  this_s[0].checked = true;
}

//------------------------------------------------------------------------