<!--
function set_focus(id){
  document.getElementById(id).focus();
}
function display_chg(id){
  if(document.getElementById(id).style.display == "none")
    document.getElementById(id).style.display="block";
  else
    document.getElementById(id).style.display="none";
}
function display_block(id){
  document.getElementById(id).style.display="block";
}
function display_none(id){
  document.getElementById(id).style.display="none";
}
function img_chg(id,url){
  document.getElementById(id).src=url;
}
function tinyMCE_load(id){
  tinyMCE.init({
  mode : "exact",
  elements : id,
  theme : "advanced",
  convert_urls : false,
  language : "ja",
  width : "100%",
  height : "250",
  theme_advanced_toolbar_location : "top",
  theme_advanced_buttons1 : "bold,italic,underline,separator,forecolor,backcolor,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,bullist,numlist,separator,hr,charmap,separator,cleanup,code",
  theme_advanced_buttons2 : "",
  theme_advanced_buttons3 : "",
  auto_focus : id
  });
}
function tinyMCE_load2(select_index,id){
  if(select_index == 1){
     tinyMCE.init({
    mode : "exact",
    elements : id,
    theme : "advanced",
    convert_urls : false,
    language : "ja",
    width : "100%",
    height : "250",
    theme_advanced_toolbar_location : "top",
    theme_advanced_buttons1 : "bold,italic,underline,separator,forecolor,backcolor,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,bullist,numlist,separator,hr,charmap,separator,cleanup,code",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    auto_focus : id
    });
  }
}
//-->

