function totalSearch(f){
  if(emptyCheck(f.key, "°Ë»ö¾î")) return false;
  if(f.key.value.length < 2){
    alert("°Ë»ö¾î Ç×¸ñÀº 2ÀÚ ÀÌ»óÀ¸·Î ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù");
    f.key.focus();
    return false;
  }
  f.action="../main/search.html";
  f.target="iframeBody";
  return true;
}

function pollCommentWrite(f)
{
  if(emptyCheck(f.comment, "ÀÇ°ß")) return false;
  if(firstSpaceCheck(f.comment, "ÀÇ°ß")) return false;
  f.action = "./pollProc.html";
}

function pollCommentDelete(r)
{
  document.commentDeleteForm.rank.value = r;
  document.commentDeleteForm.action = "./pollProc.html";
  document.commentDeleteForm.submit();
}

function pollSubmit(f) {
  var c = false;
  for(var i=0; i<f.idx.length; i++) {
    if(f.idx[i].checked == true) {
      var c = true;
      break;
    }
  }
  if(c == false) {
    alert("ÅõÇ¥ÇÒ Ç×¸ñÀ» ¼±ÅÃÇØÁÖ¼¼¿ä");
    return false;
  }
  else {
    f.action = "./pollProc.html";
    return true;
  }
}