  var dTop;
  var dLeft;
  var dWidth
  var dHeight;

  function initWdParams(){

    testHeight = window.screen.availHeight - 30;
    testWidth = window.screen.availWidth - 10;
    dWidth = 1010;
    dHeight = Math.floor((testHeight * 4) / 5) - 10;

    if(dHeight < 600)
    dHeight = testHeight ;
    else
    dHeight = 600;

    dTop = Math.floor((testHeight - dHeight) / 2);
    dLeft = Math.floor((testWidth - dWidth) / 2);
    try{
      top.detailsWnd.close();
    }
    catch(x){
    }
  }
