var RecaptchaOptions={ theme:'custom' };

function splitcsv(t) {  
  t=t.replace(/^"|"$/g,'');
  t=t.split('","');
  for (i in t) {
    t[i]=t[i].replace('\\"','"');
  };
  return t;
}

// comments

function postcomments(id,btn) {
  if (!id) {
    $('#postcomment').show();
  } else {
      var postform=$('#postcomment').html().replace('value="0"','value="'+id+'"');
      btn.parent().append('<div class="c1" style="margin-top:10px">'+postform+'</div>');
    }
  btn.hide();
}
