<!--
function centerWindow(mypage,mywidth,myheight) {
    if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;

   var xOffset = (xMax - mywidth)/2, yOffset =	(yMax - myheight)/2;
  //  var xOffset = 1, yOffset = 1;
    window.open(mypage,'myExample7','width='+mywidth+',height='+myheight+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');


}

//-->
