function WOpen(oURL, iWidth, iHeight)
{
  var iLeft = (screen.width  - iWidth) / 2 ;
  var iTop  = (screen.height - iHeight) / 2 ;

  var   sOptions = "toolbar=yes, status=no, resizable=no, dependent=yes, scrollbars=yes" ;
        sOptions += ",width="   + iWidth ; 
        sOptions += ",height="  + iHeight ;
        sOptions += ",left="    + iLeft ;
        sOptions += ",top="     + iTop ;

        var oWindow = window.open(oURL, '', sOptions); 

  return true;
}

function iOpen(oURL, iWidth, iHeight, dTitle)
{
  var iLeft = (screen.width  - iWidth) / 2 ;
  var iTop  = (screen.height - iHeight) / 2 ;
  var sOptions = "toolbar=no, status=no, resizable=no, dependent=yes, scrollbars=no";
      sOptions += ",width="   + iWidth ; 
      sOptions += ",height="  + iHeight ;
      sOptions += ",left="    + iLeft ;
      sOptions += ",top="     + iTop ;

  var oWindow = window.open('', '', sOptions); 

  oWindow.document.open();
  oWindow.document.write('<html><head><title>'+dTitle+'</title></head><body bgcolor="#FFFFFF"><img src="'+oURL+'"></body></html>');
  oWindow.document.close();

  return oWindow;
}
