<!--
  arImageList = new Array ();
  arImageSrc = new Array ();
	
  if (document.images) {
    arImageSrc = Array (
      "home-n.gif", "home-o.gif",
      "school-n.gif", "school-o.gif",
      "outlet-n.gif", "outlet-o.gif",
      "course-n.gif", "course-o.gif",
      "train-n.gif", "train-o.gif",
      "activity-n.gif", "activity-o.gif",
      "zijing-n.gif", "zijing-o.gif",
      "yitong-n.gif", "yitong-o.gif",
      "product-n.gif", "product-o.gif",
      "educhann-n.gif", "educhann-o.gif",
      "partner-n.gif", "partner-o.gif",
      "contact-n.gif", "contact-o.gif")

    for (cnt=0; cnt<arImageSrc.length; cnt++) {
      arImageList[cnt] = new Image();
      arImageList[cnt].src = "img-shar/" + arImageSrc[cnt];  
    }
  }

function rollOver(imName,num) {
  if (document.images) {
    linkIm = document.images[imName];
    if (num > 0)
      linkIm.src = "img-shar/" + imName + "-o.gif";
    else
      linkIm.src = "img-shar/" + imName + "-n.gif";
  }
}

function popwin(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//-->