/*共通スタイルjavascript1(jsファイル)*/
<!--
//■ウィンドウサイズを最適化・表示位置を中央に
var n=0;

function WindowResize(w,h) {
  var ScrnW=window.screen.availWidth;
  var ScrnH=window.screen.availHeight;

  if (n==2) {
    window.moveTo(0,0);
    window.resizeTo(ScrnW, ScrnH);
    n=1;
  } else {
    var WinTop=(ScrnH-h)/2;  
    var WinLft=(ScrnW-w)/2;
    window.resizeTo(w,h);
    window.moveTo(WinLft,WinTop);
    n=2;
  }
}

//■マウスオン時のセルの背景・フォント表示設定

function MouseOver(Obj,f){
    switch (f){    
      case 10:
         Obj.style.background="#ffa6ff";      /*背景:濃いピンクい*/
         Obj.style.fontWeight="normal";             /*font:指定しない*/
         break;
      case 20:
         Obj.style.background="#ffecec";      /*背景:薄い肌色*/
         Obj.style.fontWeight="normal";             /*font:指定しない*/
         break;
      case 30:
         Obj.style.background="#ffebcd";     /*背景:少し濃い肌色*/
         Obj.style.fontWeight="normal";            /*font:指定しない*/
         break;
      case 11:
         Obj.style.background="#ffa6ff";     /*背景:濃いピンク*/
         Obj.style.fontWeight="bold";        /*font:太く*/
         break;
      case 21:
         Obj.style.background="#feeffe";     /*背景:薄いピンク*/
         Obj.style.fontWeight="bold";        /*font:太く*/
         break;
      case 31:
         Obj.style.background="#ffcaff";     /*背景:少し濃いピンク*/
         Obj.style.fontWeight="bold";        /*font:太く*/
         break;


      case 13:
         Obj.style.background="#ffffff";     /*背景:白*/
         Obj.style.fontWeight="";            /*font:指定しない*/
         Obj.style.color="";                 /*font:指定しない*/
         break;
       case 23:
         Obj.style.fontWeight="bold";        /*font:太く*/
         break;
       case 22:
         Obj.style.fontWeight="";            /*font:指定しない*/
         break;

      default:
         Obj.style.background="";            /*背景:なし*/
         Obj.style.fontWeight="";            /*font:指定しない*/
        }
}

//■Copyrightの自動表示
function WebStudioCopyRight() {
  var now = new Date();
  var myYear = now.getYear();
  document.write("Copyright(C) 2005-" + myYear + "　Ichikawa Clinic All Rights Reserved.");
}

