﻿
$(document).ready(function(){
    init();
    var u1=document.URL.split("?"); 
    $("#followsid").val(u1[1]);
    init_info(u1[1]);
  });
function init(){}
function init_info(sid){
    $.getJSON("../../data/getjson_discusslist.php?canDisplay=no,yes&followsid=0&sid=" + sid,
        function(json){
          runloop(json,"loop1");
          checkchecked();

    $.getJSON("../../data/getjson_discusslist.php?canDisplay=no,yes&followsid=" + sid,
        function(json){
          if (json.data!=""){
            runloop(json,"loop");
            $("[id=execmode]").val("update");
            checkchecked();
          }
          else{
            $("#writername").val("雅丰時尚醫療團隊");
            $("#content").val("");
            checkchecked();
          }
        });
  });  
}

