// JavaScript Document
<!--

new_win = null

function showpopup(path, optWidth, optHeight)
{
  // Pop up a windown in the middle of the screen.
  var width=typeof optWidth!="undefined" ? optWidth : "800"   //set 800px to default width
  var height=typeof optHeight!="undefined" ? optHeight : "600"   //set 600px to  default height
/* alert( "w: " + width + ", h: " + height);
*/ var left = parseInt((screen.availWidth/2) - (width/2));
  var top = parseInt((screen.availHeight/2) - (height/2));
  left = left + 100;
  top = top - 50;
  var win_params = "width=" + width + ",height=" + height + ",scrollbars=1, resizeable=yes,left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top;
  new_win = window.open(path,"",win_params);
}

//-->