function openNewWin(myUrl, w, h)
{
  var szFeatures;
  var x, y;
  x = window.screenX + (window.outerWidth-w)/2;
  y = window.screenY + (window.outerHeight-h)/2;
  if( x < 0 ) x = 0;
  if( y < 0 ) y = 0;
  szFeatures = 'width='+w+',height='+h+',screenx='+x+',screeny='+y+',status=no,help=no,resizable=no,scroll=yes';
  //alert(szFeatures);
  window.open(myUrl, "AddToLightbox", szFeatures);
}

function MM_openBrWindow(theURL,winName,features) 
{ 
  window.open(theURL,winName,features);
}
