

function setFormForMod (v_name, v_email, v_title, v_comment, v_imgfiletitle, v_delpassword) {

  document.form1.name.value = v_name;
  document.form1.email.value = v_email;
  document.form1.title.value = v_title;
  document.form1.comment.value = v_comment;
  if (document.form1.imgfiletitle) {
    document.form1.imgfiletitle.value = v_imgfiletitle;
  }
  document.form1.delpassword.value = v_delpassword;

}


function setFormFromCook () {

  var bbscook_name = getCookie('bbscook_name');
  var bbscook_email = getCookie('bbscook_email');
  var bbscook_delpassword = getCookie('bbscook_delpassword');

  if (bbscook_name != '') {
    document.form1.name.value = bbscook_name;
  }
  if (bbscook_email != '') {
    document.form1.email.value = bbscook_email;
  }
  if (bbscook_delpassword != '') {
    document.form1.delpassword.value = bbscook_delpassword;
  }
}

function getCookie(key) {
  var tmp1 = " " + document.cookie + ";";
  var xx1 = 0;
  var xx2 = 0;
  while (xx1 < tmp1.length) {
    xx2 = tmp1.indexOf(";", xx1);
    tmp2 = tmp1.substring(xx1 + 1, xx2);
    var xx3 = tmp2.indexOf("=");
    if (tmp2.substring(0, xx3) == key) {
      return(unescape(tmp2.substring(xx3 + 1, xx2 - xx1 - 1)));
    }
    xx1 = xx2 + 1;
  }
  return('');
}



