// JavaScript Document






function openCENTER(HtmlName,wName,ww,hh){//
var w;
wx = ww;
wy = hh;
x = (screen.availWidth - wx ) / 2;
y = (screen.availHeight -wy ) / 2;
w = window.open(HtmlName,wName,"scrollbars=no,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,width=" + ww + ",height=" + hh +",left=" + x +",top="+ y + "");
self.window.name="main";

w.moveTo(x,y);
w.window.focus();
}

//<a href="javascript:openCENTER2('information/schedule.html','window2003',620,540);">



  function moveLAYER(layName,x,y){
      
      if(document.getElementById){         //Moz,NN6,IE5—p
        document.getElementById(layName).style.left=x
        document.getElementById(layName).style.top=y
      }
      else if(document.all){
        document.all(layName).style.pixelLeft=x    //IE4—p
        document.all(layName).style.pixelTop=y
      }
      else if(document.layers){
        document.layers[layName].moveTo(x,y)
                                                   //NN4—p
      }
  }

