<!--
function centerPop(popWidth,popHeight,url) {

  if (document.all)
    var xMax = screen.width, yMax = screen.height
  else
    if (document.layers)
      var xMax = window.outerWidth, yMax = window.outerHeight
    else
      var xMax = 800, ymax = 600;
  
  var xOffset = (xMax - popWidth) / 2, yOffset = (yMax - popHeight) / 2;

  window.open(url, '', 'width=' + popWidth + ',height=' + popHeight + ',screenX=' + xOffset +
    ',screenY=' + yOffset + ',top=' + yOffset + ',left=' + xOffset);

}

function pop_es(){
	newwin=window.open("http://www.hangseng.com/hsb/eng/abo/ir/ra/index030507s.html", "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=790,height=540,screenX=0,screenY=0,top=0,left=0");
	newwin.opener = self;
}


function pop_flash(){
	centerPop(795,550,"../../flash/index.html");
}



//-->