<script language="JavaScript">
function Show(id){
        var obj=document.getElementById('c_'+id);
        if(obj.style.display=="none"){
                obj.style.display="";
                //??℅車2?米ㄓId﹞?豕?Cookies
                var curShow = readCookie('curShow');
                if(curShow!='')
                {
                    var arr_curShow = curShow.split(',');
                    var found = false;
                    for(i=0;i<arr_curShow.length-1;i++)
                    {
                        if(arr_curShow[i].toString()==id) {found=true;}
                    }
                    if(!found){writeCookie('curShow',curShow+','+id,12)}
                }
                else {
                    writeCookie('curShow',id,12)
                }
                //??℅車2?米ㄓId﹞?豕?Cookies End
        }else{
                obj.style.display="none";
                //??℅車2?米ㄓId∩車Cookies?D辰?3y
                var curShow = readCookie('curShow');
                if(curShow!='')
                {
                    var arr_curShow = curShow.split(',');
                    for(i=0;i<arr_curShow.length;i++)
                    {
                        if(arr_curShow[i].toString()==id) {arr_curShow=arr_curShow.del(i--);}
                    }
                    curShow = arr_curShow.join(',');
                    //alert(curShow);
                    writeCookie('curShow',curShow,12)
                }
                //??℅車2?米ㄓId∩車Cookies?D辰?3y End
        }

}

function readCookie(name)

{

  var cookieValue = "";

  var search = name + "=";

  if(document.cookie.length > 0)

  { 

    offset = document.cookie.indexOf(search);

    if (offset != -1)

    { 

      offset += search.length;

      end = document.cookie.indexOf(";", offset);

      if (end == -1) end = document.cookie.length;

      cookieValue = unescape(document.cookie.substring(offset, end))

    }

  }

  return cookieValue;

}

function writeCookie(name, value, hours)

{

  var expire = "";

  if(hours != null)

  {

    expire = new Date((new Date()).getTime() + hours * 3600000);

    expire = "; expires=" + expire.toGMTString();

  }

  document.cookie = name + "=" + escape(value) + expire;

}
Array.prototype.del=function(n) {  //n㊣赤那?米迆????㏒?∩車0?a那????e?㏒
//prototype?a???車?-D赤㏒?℅⊿辰a?a角??a???車???車℅??“辰?﹞?﹞“米?﹞?﹞“?㏒
  if(n<0)  //豕?1?n<0㏒??辰2???DD豕?o?2迄℅‾?㏒
    return this;
  else
    return this.slice(0,n).concat(this.slice(n+1,this.length));
}


window.onload = function a()
{
    var curShow = readCookie('curShow');
    var totalShow = 4;    //℅??oDT??辰?12車D?角谷迄???t??﹞?角角
    if(curShow!=''&&curShow!=null)
    {
        for(i=1;i<=totalShow;i++)
        {
            document.getElementById('c_'+i).display="none";
        }
        var arr_curShow;
        arr_curShow = curShow.split(',');
        for(i=0;i<=arr_curShow.length-1;i++)
        {
            if(arr_curShow[i]!=''){document.getElementById('c_'+arr_curShow[i]).style.display="";}
        }

    }
}
</script>
