<!--

theName="onload_text=";                        //cookie名
theday=90;                                     //cookie保存日数
//----------------------------------------------
function onload_text_set(){
 theCookie=document.cookie+";";
 start=theCookie.indexOf(theName);
if(start !=-1){
  end=theCookie.indexOf(";",start);
  theData=theCookie.substring(start+theName.length,end);
  document.showform.showcheck.checked=(theData=="t")?true:false;
  if(theData=="t")
    document.getElementById('show').style.display='none';
}
}
function onload_text_close(){
  myData="";setDay=new Date();
myData=(document.showform.showcheck.checked==true)?"t":"f";
setDay.setTime(setDay.getTime()+(theday*1000*60*60*24));
document.cookie=theName+myData+";expires="+setDay.toGMTString();
}/*himajin.moo.jp*/
onload=onload_text_set;
onunload=onload_text_close

// -->


