/****▽▽CopyRight▽▽****/
function text(){
  document.write("COPYRIGHT&#169; 2011 The Rose Culture Institute.");
  document.write("All rights reserved.");
}

function CopyRight(){
  document.write("<div class='copyright'>");
  text();
  document.write("</div>");
}

function CopyRight500(){
  document.write("<div class='copyright500'>");
  text();
  document.write("</div>");
}
/****△△CopyRight△△****/

//JavaScriptで3桁区切りのカンマ
function addFigure(str) {
var num = new String(str).replace(/,/g, "");
while(num != (num = num.replace(/^(-?\d+)(\d{3})/, "$1,$2")));
return num;
}



