// JavaScript Document



function OpenWinDir( url )
{
  windowHeight = 800;
  windowWidth = 700; 

  var newWindow = window.open( url, "popUp", "height=" +
windowHeight + ",width=" + windowWidth + ",scrollbars=yes,resizable=yes" );
    newWindow.moveTo( (screen.width-windowWidth)/2, (screen.height-
windowHeight)/2 );
    newWindow.focus();
}

