iBox.setPath('js/');
iBox.close_label = 'X';

function viewfull(url, width, height) {

  JSFSplashWin = null;
    
  ScrWidth = 640; 
  ScrHeight = 480;
 
  if (window.screen) {
    ScrWidth = window.screen.width; ScrHeight = window.screen.height
  }
 
  PosX = Math.round((ScrWidth - width)/2);
  PosY = Math.round((ScrHeight - height)/2);

  if (JSFSplashWin != null && !document.layers) {JSFSplashWin.close();}
 
  phototbw = window.open(url, '', "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width=" + (width + 15) + ",height=" + (height + 15) + ",left=" + PosX + ",top=" + PosY);

  phototbw.focus();
}
