/*文字サイズ変更*/
function large(){
   document.body.style.fontSize="120%";
}
function standard(){
   document.body.style.fontSize="95%";
}
function small(){
   document.body.style.fontSize="80%";
}

function FontChange(fontS) {
  return eval(fontS)
}



function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

